Implement progress percentage reporting while running tests

Fix #2657
This commit is contained in:
Bruno Oliveira
2017-09-27 14:42:55 -03:00
parent 7a7cb8c8c5
commit dab889304e
8 changed files with 81 additions and 27 deletions

View File

@@ -2119,6 +2119,10 @@ class TestFixtureMarker(object):
assert values == [1, 1, 2, 2]
def test_module_parametrized_ordering(self, testdir):
testdir.makeini("""
[pytest]
console_output_style=classic
""")
testdir.makeconftest("""
import pytest
@@ -2165,6 +2169,10 @@ class TestFixtureMarker(object):
""")
def test_class_ordering(self, testdir):
testdir.makeini("""
[pytest]
console_output_style=classic
""")
testdir.makeconftest("""
import pytest