We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fba7ec7 commit ad7e75aCopy full SHA for ad7e75a
tests/testing/python/test_parser_registry.py
@@ -116,24 +116,6 @@ def test_django_5():
116
assert len(result[0].stacktrace) == 0
117
118
119
-
120
-def test_django_6():
121
- """Test parsing Django output with traceback"""
122
- with open(_get_test_data_path("django_output_6.txt")) as f:
123
- log = f.read()
124
125
- result = parse_log(log, "django/django")
126
127
- assert len(result) == 89
128
129
- failed = [r for r in result if r.status == TestStatus.FAILED]
130
- assert len(failed) == 5
131
132
- for fail in failed:
133
- print(fail.failure_output)
134
135
- for i, res in enumerate(result):
136
- print(f"{i} {res.name}")
137
138
139
def test_django_error():
0 commit comments