File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -62,25 +62,25 @@ jobs:
62
62
- name : Install Dependencies
63
63
run : |
64
64
pip install -r requirements-generator.txt
65
+
66
+ - name : Test Templates Status
67
+ continue-on-error : true
68
+ run : |
69
+ cd python
70
+ ../bin/template_status.py -v -p ../problem-specifications
65
71
66
- - name : Generate tests
72
+ - name : Generate Tests from Templates
67
73
run : |
68
74
bin/generate_tests.py --verbose -p ./problem-specifications --check
69
75
70
- - name : Lint with flake8
76
+ - name : Lint Exercises and Data with flake8
71
77
run : |
72
78
# stop the build if there are Python syntax errors or undefined names
73
79
flake8 ./python/exercises/practice --count --select=E9,F63,F7,F82 --show-source --statistics
74
80
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
75
81
flake8 ./python/exercises/practice --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
76
82
77
- - name : Test template status
78
- continue-on-error : true
79
- run : |
80
- cd python
81
- ../bin/template_status.py -v -p ../problem-specifications
82
-
83
- - name : Check exercises
83
+ - name : Check Exercise Examples against Tests
84
84
run : |
85
85
cd python
86
86
../bin/test_exercises.py --runner test-runner
You can’t perform that action at this time.
0 commit comments