From 318bc776602331d9518fd2709d1ee1f04f5ecc73 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 26 Feb 2020 06:25:26 +0100 Subject: [PATCH] poetry run pytest --- .github/workflows/lint_python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index f9effd96..9867df72 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -9,11 +9,11 @@ jobs: steps: - uses: actions/checkout@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: codespell --quiet-level=2 || true # --ignore-words-list="" --skip="" - run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - run: isort --recursive . || true - run: pip install poetry - run: poetry install - - run: pytest + - run: poetry run pytest