We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d26f37 commit dc574c6Copy full SHA for dc574c6
testing/test_terminal.py
@@ -991,9 +991,9 @@ def test_foobar(i): pass
991
def test_normal(self, many_tests_file, testdir):
992
output = testdir.runpytest()
993
output.stdout.re_match_lines([
994
- r'test_bar.py \.\.\.\.\.\.\.\.\.\. \s+ \[ 50%\]',
995
- r'test_foo.py \.\.\.\.\. \s+ \[ 75%\]',
996
- r'test_foobar.py \.\.\.\.\. \s+ \[100%\]',
+ r'test_bar.py \.{10} \s+ \[ 50%\]',
+ r'test_foo.py \.{5} \s+ \[ 75%\]',
+ r'test_foobar.py \.{5} \s+ \[100%\]',
997
])
998
999
def test_verbose(self, many_tests_file, testdir):
@@ -1008,7 +1008,7 @@ def test_xdist_normal(self, many_tests_file, testdir):
1008
pytest.importorskip('xdist')
1009
output = testdir.runpytest('-n2')
1010
1011
- r'\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\. \s+ \[100%\]',
+ r'\.{20} \s+ \[100%\]',
1012
1013
1014
def test_xdist_verbose(self, many_tests_file, testdir):
0 commit comments