Skip to content

Commit 4a8c323

Browse files
Remove checkjson-schema patch (#86)
1 parent 9087949 commit 4a8c323

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/test_validate.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ jobs:
3333
cache-dependency-path: .github/workflows/validate_requirements.txt
3434
- run: pip install -r .github/workflows/validate_requirements.txt
3535
- name: Validate grammar tests
36-
run: >
37-
python -c 'import check_jsonschema; from check_jsonschema.loaders import instance; import ruamel.yaml; instance.LOAD_FUNC_BY_TAG["yaml"] = ruamel.yaml.YAML(typ="safe", pure=True).load; check_jsonschema.main()' --schemafile grammar_schema.yml ${{ matrix.manifest }}
38-
# TODO https://github.com/python-jsonschema/check-jsonschema/pull/121
39-
#run: "check-jsonschema --schemafile grammar_schema.yml ${{ matrix.manifest }}"
36+
run: "check-jsonschema --schemafile grammar_schema.yml ${{ matrix.manifest }}"
4037

4138
list-functions:
4239
runs-on: ubuntu-latest
@@ -60,7 +57,4 @@ jobs:
6057
cache-dependency-path: .github/workflows/validate_requirements.txt
6158
- run: pip install -r .github/workflows/validate_requirements.txt
6259
- name: Validate function spec
63-
run: >
64-
python -c 'import check_jsonschema; from check_jsonschema.loaders import instance; import ruamel.yaml; instance.LOAD_FUNC_BY_TAG["yaml"] = ruamel.yaml.YAML(typ="safe", pure=True).load; check_jsonschema.main()' --schemafile function_schema.yml ${{ matrix.manifest }}
65-
# TODO https://github.com/python-jsonschema/check-jsonschema/pull/121
66-
# run: "check-jsonschema --schemafile function_schema.yml ${{ matrix.manifest }}"
60+
run: "check-jsonschema --schemafile function_schema.yml ${{ matrix.manifest }}"

0 commit comments

Comments
 (0)