Skip to content

Commit 687200e

Browse files
committed
fix build errors
1 parent c75d253 commit 687200e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ jobs:
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install flake8 pytest pipenv
25-
pipenv run pip freeze > requirements.txt
2625
pip install -r requirements.txt
2726
2827
- name: Lint with flake8
2928
run: |
3029
# stop the build if there are Python syntax errors or undefined names
3130
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
32-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
31+
# exit-zero treats all errors as warnings.
3332
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=120 --statistics
3433
3534
- name: Test with pytest

0 commit comments

Comments
 (0)