Skip to content

Commit 0aebd0e

Browse files
authored
Temporarily disable generator checks (exercism#2249)
exercism/problem-specifications is undergoing significant changes; will update and restore these checks as appropriate once the changes there are complete.
1 parent 42c2c49 commit 0aebd0e

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/ci-workflow.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,25 @@ jobs:
2828
- name: Check readmes
2929
run: |
3030
./bin/check-readmes.sh
31-
- name: Generate tests
31+
- name: Check config.json integrity
3232
run: |
33-
bin/generate_tests.py --verbose -p spec --check
3433
# May provide more useful output than configlet fmt
3534
# if JSON is not valid or items are incomplete
3635
./bin/configlet lint .
3736
# Verify correct formatting in config.json
3837
./bin/configlet fmt . && git diff --quiet
38+
#- name: Generate tests
39+
# run: |
40+
# bin/generate_tests.py --verbose -p spec --check
3941
- name: Lint with flake8
4042
run: |
4143
# stop the build if there are Python syntax errors or undefined names
4244
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
4345
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
4446
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
45-
- name: Test version status
46-
run: |
47-
./bin/check-test-version.py -p spec
47+
#- name: Test version status
48+
# run: |
49+
# ./bin/check-test-version.py -p spec
4850
- name: Test template status
4951
continue-on-error: true
5052
run: |

0 commit comments

Comments
 (0)