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 1263dd2 commit dfe78fcCopy full SHA for dfe78fc
tests/unit/cli/test_schemas.py
@@ -15,7 +15,11 @@ def test_check_schema_builtin(name):
15
if name == "vendor.compose-spec":
16
pytest.skip("vendor.compose-spec does not work")
17
return
18
- regex_name = RegexVariantName.nonunicode if "azure-pipelines" in name else RegexVariantName.default
+ regex_name = (
19
+ RegexVariantName.nonunicode
20
+ if "azure-pipelines" in name
21
+ else RegexVariantName.default
22
+ )
23
regex_impl = RegexImplementation(regex_name)
24
schema = get_builtin_schema(name)
25
0 commit comments