diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index db1aab6..a060eb6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,9 +44,9 @@ jobs: - name: Run linters run: | source .venv/bin/activate - poetry run black --config pyproject.toml --check --diff --verbose . - poetry run isort --check --diff --verbose . - poetry run flake8 --config .flake8 --verbose --count . + black --config pyproject.toml --check --diff --verbose . + isort --check --diff --verbose . + flake8 --config .flake8 --verbose --count . pytest: runs-on: ubuntu-latest @@ -85,4 +85,4 @@ jobs: - name: Run Pytest run: | source .venv/bin/activate - poetry run pytest --verbose + pytest --verbose