File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -29,12 +29,10 @@ jobs:
29
29
run : |
30
30
npm install --no-progress
31
31
pip install flake8 pytest
32
- - name : Set Windows environment
33
- if : matrix.os == 'windows-latest'
34
- run :
35
- echo ::set-env name=GYP_MSVS_VERSION::2015
36
- echo ::set-env name=GYP_MSVS_OVERRIDE_PATH::C:\\Dummy
37
32
- name : Run Node tests
33
+ env :
34
+ GYP_MSVS_VERSION : 2015
35
+ GYP_MSVS_OVERRIDE_PATH : C:\\Dummy
38
36
run : |
39
37
npm test
40
38
- name : Lint Python
45
43
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
46
44
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
47
45
- name : Run Python tests
46
+ env :
47
+ GYP_MSVS_VERSION : 2015
48
+ GYP_MSVS_OVERRIDE_PATH : C:\\Dummy
48
49
run : |
49
50
python -m pytest
50
51
# - name: Run doctests with pytest
You can’t perform that action at this time.
0 commit comments