We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d216f6 commit 8a11f5fCopy full SHA for 8a11f5f
1 file changed
tests/test_core.py
@@ -393,9 +393,8 @@ def test_multi_file_support(self):
393
elif fail_exception_class == "RuleError":
394
fail_except_class_instance = RuleError
395
396
- msg = "FAILED TEST FILE: {0}".format(fail_test)
397
-
398
- with pytest.raises(fail_except_class_instance, message=msg):
+ with pytest.raises(fail_except_class_instance):
+ print("Running test file {0}".format(fail_test))
399
c = Core(
400
source_data=data,
401
schema_data=[schema] + partial_files,
0 commit comments