We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75d253 commit 687200eCopy full SHA for 687200e
.github/workflows/ci.yaml
@@ -22,14 +22,13 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip
24
pip install flake8 pytest pipenv
25
- pipenv run pip freeze > requirements.txt
26
pip install -r requirements.txt
27
28
- name: Lint with flake8
29
30
# stop the build if there are Python syntax errors or undefined names
31
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
+ # exit-zero treats all errors as warnings.
33
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=120 --statistics
34
35
- name: Test with pytest
0 commit comments