poetry run pytest

pull/42/head
Christian Clauss 6 years ago committed by GitHub
parent 0246e55a61
commit 318bc77660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,11 +9,11 @@ jobs:
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- uses: actions/setup-python@master - uses: actions/setup-python@master
- run: pip install black codespell contextvars flake8 graphviz isort jinja2 poetry pytest - run: pip install black codespell flake8 isort poetry pytest
- run: black . --diff || true - run: black . --diff || true
- run: codespell --quiet-level=2 || true # --ignore-words-list="" --skip="" - run: codespell --quiet-level=2 || 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 --recursive . || true - run: isort --recursive . || true
- run: pip install poetry - run: pip install poetry
- run: poetry install - run: poetry install
- run: pytest - run: poetry run pytest

Loading…
Cancel
Save