Skip to content

Commit

Permalink
Don’t install in system python
Browse files Browse the repository at this point in the history
  • Loading branch information
dcwatson committed Nov 5, 2024
1 parent 54aca39 commit c145e4f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: CI
on: [push, pull_request]

env:
UV_SYSTEM_PYTHON: 1
UV_PYTHON_DOWNLOADS: never
UV_PYTHON_PREFERENCE: only-system

Expand Down Expand Up @@ -49,6 +48,6 @@ jobs:
- name: Install Django
run: uv pip install "Django~=${{ matrix.django-version }}"
- name: Run Tests (PostgreSQL)
run: uv run --no-sync manage.py test
run: uv run manage.py test
- name: Run Tests (SQLite)
run: TEST_ENGINE=sqlite uv run --no-sync manage.py test
run: TEST_ENGINE=sqlite uv run manage.py test

0 comments on commit c145e4f

Please sign in to comment.