File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 python -m pip install black
2727 - name : Check code formatting with black
2828 run : |
29- black -v -l 100 --check .
29+ black -v -l 100 --check src/ test/
Original file line number Diff line number Diff line change 2626 python -m pip install flake8
2727 - name : Lint with flake8
2828 run : |
29- flake8 . -v --count --max-line-length=100 --max-complexity=10 --per-file-ignores="__init__.py:F401" --show-source --statistics
29+ flake8 src/ test/ -v --count --max-line-length=100 --max-complexity=10 --per-file-ignores="__init__.py:F401" --show-source --statistics
Original file line number Diff line number Diff line change 2626 python -m pip install isort
2727 - name : Check imports organization with isort
2828 run : |
29- isort -v --profile black -l 100 --check .
29+ isort -v --profile black -l 100 --check src/ test/
You can’t perform that action at this time.
0 commit comments