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 d333b27 commit 71fa72dCopy full SHA for 71fa72d
tests/test_recipe_parser.py
@@ -1612,8 +1612,7 @@ def test_recipe_parses_strings_colons_quotes():
1612
@pytest.mark.parametrize("recipe", os.listdir(YAML_PATH))
1613
def test_recipe_parser_yaml_suite(recipe):
1614
if (
1615
- recipe.endswith("_correct.yaml")
1616
- and "duplicate_lines_cleanup" not in recipe
+ recipe.endswith("_correct.yaml") and "duplicate_lines_cleanup" not in recipe
1617
) or recipe.endswith("_after_meta.yaml"):
1618
with open(os.path.join(YAML_PATH, recipe)) as f:
1619
recipe = f.read()
0 commit comments