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 3d8ed48 commit 480f361Copy full SHA for 480f361
tests/test_db_setup.py
@@ -52,12 +52,13 @@ def test_run_first_fixture(db):
52
def test_run_first_decorator():
53
pass
54
''')
55
- result = django_testdir.runpytest('-vv', '-s')
+ result = django_testdir.runpytest('-v', '-s')
56
+ assert result.ret == 0
57
result.stdout.fnmatch_lines([
- "*test_run_first_fixture PASSED*",
58
- "*test_run_first_decorator PASSED*",
59
- "*test_run_second_decorator PASSED*",
60
- "*test_run_second_fixture PASSED*",
+ "*test_run_first_fixture*",
+ "*test_run_first_decorator*",
+ "*test_run_second_decorator*",
61
+ "*test_run_second_fixture*",
62
])
63
64
0 commit comments