Browse Source

pip install -r requirements.txt -r requirements-nfse.txt

pull/110/head
Christian Clauss 5 years ago
committed by GitHub
parent
commit
f309fb3c65
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/lint_python.yml

6
.github/workflows/lint_python.yml

@ -6,13 +6,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-python@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: bandit --recursive --skip B101 . || true # B101 is assert statements
- run: black --check . || true - run: black --check . || true
- run: codespell || true # --ignore-words-list="" --skip=""
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- run: isort --check-only --profile black . || true - 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: mypy --ignore-missing-imports . || true
- run: pytest . || true - run: pytest . || true
- run: pytest --doctest-modules . || true - run: pytest --doctest-modules . || true

Loading…
Cancel
Save