Skip to content

Commit

Permalink
Simplify install in "pytest" CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Jan 23, 2024
1 parent d10dd4a commit 7992ca2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:
cache: pip
cache-dependency-path: "**/pyproject.toml"

- name: Upgrade pip, wheel
run: python -m pip install --upgrade pip wheel
- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Install the Python package and dependencies
run: pip install .[cache,tests]
run: pip install .[tests]

- name: Run pytest
env:
Expand Down

0 comments on commit 7992ca2

Please sign in to comment.