Skip to content

Commit

Permalink
Revert set-env action
Browse files Browse the repository at this point in the history
  • Loading branch information
imatlopez committed Sep 2, 2020
1 parent 354c569 commit 392e47f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ jobs:
run: |
npm install --no-progress
pip install flake8 pytest
- name: Set Windows environment
if: matrix.os == 'windows-latest'
run:
echo ::set-env name=GYP_MSVS_VERSION::2015
echo ::set-env name=GYP_MSVS_OVERRIDE_PATH::C:\\Dummy
- name: Run Node tests
env:
GYP_MSVS_VERSION: 2015
GYP_MSVS_OVERRIDE_PATH: C:\\Dummy
run: |
npm test
- name: Lint Python
Expand All @@ -45,6 +43,9 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run Python tests
env:
GYP_MSVS_VERSION: 2015
GYP_MSVS_OVERRIDE_PATH: C:\\Dummy
run: |
python -m pytest
# - name: Run doctests with pytest
Expand Down

0 comments on commit 392e47f

Please sign in to comment.