Skip to content

Commit

Permalink
Use python for venv, not system-wide
Browse files Browse the repository at this point in the history
  • Loading branch information
Orhideous committed Feb 13, 2024
1 parent 7622427 commit 38809f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -85,4 +85,4 @@ jobs:
- name: Run Pytest
run: |
source .venv/bin/activate
poetry run pytest --verbose
pytest --verbose

0 comments on commit 38809f7

Please sign in to comment.