Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sphuber committed Oct 26, 2024
1 parent d9e9d3c commit bb6befd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
- name: Install uv
run: pip install uv

- name: Create and activate virtual environment
run: uv venv && source .venv/bin/activate
- name: Create virtual environment
run: uv venv

- name: Install Python package and test dependencies
run: uv pip install .[test] && uv pip freeze
run: uv pip install .[test]

- name: Run test suite
run: pytest
run: source .venv/bin/activate && pytest


multi-os:
Expand Down

0 comments on commit bb6befd

Please sign in to comment.