Skip to content

Commit 38580ef

Browse files
authoredDec 13, 2024··
Update python-app.yml
1 parent d4af62a commit 38580ef

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎.github/workflows/python-app.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,15 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install flake8 pytest
29+
# pip install flake8 pytest
30+
pip install flake8
3031
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3132
- name: Lint with flake8
3233
run: |
3334
# stop the build if there are Python syntax errors or undefined names
3435
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3536
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3637
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
37-
- name: Test with pytest
38-
run: |
39-
pytest
38+
# - name: Test with pytest
39+
# run: |
40+
# pytest

0 commit comments

Comments
 (0)
Please sign in to comment.