Skip to content

Commit

Permalink
fixup! chore: move dev to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Nov 13, 2024
1 parent 8a8b486 commit 2e6150e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,18 @@ jobs:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v3

- name: install sqlite on windows
if: matrix.os == 'windows-latest'
run: choco install sqlite

- name: show sqlite version
run: uv run python -c 'import sqlite3; print(sqlite3.sqlite_version)'

- name: show library pre installation
run: uv run python -c 'import ctypes.util as u; print(u.find_library("sqlite3"))'

- name: show os sqlite version
run: sqlite3 -version

- name: show library post installation
run: uv run python -c 'import ctypes.util as u; print(u.find_library("sqlite3"))'

- name: run tests
run: uv run --group tests pytest -vv -x --randomly-dont-reorganize
env:
Expand Down

0 comments on commit 2e6150e

Please sign in to comment.