Browse Source
pip install -r requirements.txt -r requirements-nfse.txt
pull/110/head
Christian Clauss
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
.github/workflows/lint_python.yml
|
|
|
@ -6,13 +6,13 @@ jobs: |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- uses: actions/setup-python@v2 |
|
|
|
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade safety |
|
|
|
- run: pip install bandit black flake8 isort mypy pytest pyupgrade safety |
|
|
|
- run: bandit --recursive --skip B101 . || true # B101 is assert statements |
|
|
|
- run: black --check . || true |
|
|
|
- run: codespell || true # --ignore-words-list="" --skip="" |
|
|
|
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics |
|
|
|
- run: isort --check-only --profile black . || true |
|
|
|
- run: pip install -r requirements.txt || true |
|
|
|
- run: pip install -r requirements.txt -r requirements-nfse.txt |
|
|
|
- run: python ./test.py || true |
|
|
|
- run: mypy --ignore-missing-imports . || true |
|
|
|
- run: pytest . || true |
|
|
|
- run: pytest --doctest-modules . || true |
|
|
|
|