Skip to content

Update requirements/test-ci-default.txt #2665

Update requirements/test-ci-default.txt

Update requirements/test-ci-default.txt #2665

Workflow file for this run

name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/action@v2.0.3
- run: pip install --upgrade pip wheel
- run: pip install bandit codespell flake8 isort pytest pyupgrade tox
- run: bandit -r . || true
- run: codespell --ignore-words-list="brane,gool,ist,sherif,wil" --quiet-level=2 --skip="*.key" || true
- run: pip install -r requirements.txt || true
- run: tox || true
- run: pytest . || true
- run: pytest --doctest-modules . || true