Skip to content

Commit d5c6f11

Browse files
committed
Pytest is not needed (for now)
1 parent 0c4d7ee commit d5c6f11

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install flake8 pytest
26+
pip install flake8
2727
pip install -r requirements.txt
2828
- name: Lint with flake8
2929
run: |
3030
# stop the build if there are Python syntax errors or undefined names
3131
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3232
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3333
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
34-
- name: Test with pytest
35-
run: |
36-
pytest
34+
# - name: Test with pytest
35+
# run: |
36+
# pytest

0 commit comments

Comments
 (0)