Skip to content

Commit

Permalink
turning off tests in action
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Apr 13, 2020
1 parent 363213e commit d8bc7df
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/cache@v1.1.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.cfg') }}
key: ${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python 3.7
Expand All @@ -38,7 +38,7 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# 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: Test with pytest
run: |
pip install pytest
pytest
# - name: Test with pytest
# run: |
# pip install pytest
# pytest

0 comments on commit d8bc7df

Please sign in to comment.