We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d848172 commit 28954f4Copy full SHA for 28954f4
test_parser.py
@@ -20,7 +20,7 @@ def test_file_with_tree(file):
20
21
@pytest.mark.parametrize("file", glob.glob("fixtures/*.ifc"))
22
def test_file_without_tree(file):
23
- if "fail_too_many_header_entity_fields.ifc" in file:
+ if any(sub in file for sub in ["fail_too_many_header_entity_fields.ifc", "fail_multiple_wrong_header_fields"]):
24
pytest.skip("This file relies on header field validation using the parsed AST, "
25
"but with_tree=False uses a NullTransformer that discards the AST, "
26
"so validating the header field names is not possible in this mode.")
0 commit comments