Skip to content

Commit

Permalink
ci(test.yaml): re-ordering steps when installing and testing
Browse files Browse the repository at this point in the history
  • Loading branch information
timurcarstensen committed Nov 25, 2024
1 parent c1be2f1 commit 2287b45
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
uses: astral-sh/setup-uv@v3
with:
version: latest
- name: create venv
run: uv venv --python ${{ matrix.python-version }}
- name: Install
run: uv pip install ".[dev]"
- name: Run tests
run: .venv/bin/python -m pytest -m "" # Run all markers

- name: run tests
run: |
uv venv --python ${{ matrix.python-version }}
source .venv/bin/activate
uv pip install -e ".[dev]"
uv run pytest -m "" # Run all markers

0 comments on commit 2287b45

Please sign in to comment.