Skip to content

Commit b807081

Browse files
authored
Update pythonapp.yml
1 parent 51a0414 commit b807081

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,11 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v1
12-
- name: Set up Python 3.7
12+
- name: Test requirements
1313
uses: actions/setup-python@v1
1414
with:
1515
python-version: 3.7
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip
1919
pip install -r requirements.txt
20-
- name: Lint with flake8
21-
run: |
22-
pip install flake8
23-
# stop the build if there are Python syntax errors or undefined names
24-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
25-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
26-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
27-
- name: Test with pytest
28-
run: |
29-
pip install pytest
30-
pytest

0 commit comments

Comments
 (0)