Skip to content

Commit

Permalink
Don't use system python env
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Wittgen authored and Matthias Wittgen committed Jan 4, 2025
1 parent 857deb3 commit 1fa9141
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ jobs:
- name: Build and install
run: |
python -m pip install --upgrade pip setuptools uv
uv pip install --system .[yaml,test]
uv venv
uv pip install pytest
uv pip install .[yaml,test]
- name: Run tests
run: pytest -r a -v
run: uv run pytest -r a -v

pypi_sdist_build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1fa9141

Please sign in to comment.