build fixes, uv for testing

This commit is contained in:
Alex Garcia 2026-02-13 06:45:46 -08:00
parent 5e4226a257
commit 5fec51c32a
2 changed files with 13 additions and 19 deletions

View file

@ -35,13 +35,6 @@ ifdef CONFIG_WINDOWS
LOADABLE_EXTENSION=dll
endif
ifdef python
PYTHON=$(python)
else
PYTHON=python3
endif
ifndef OMIT_SIMD
ifeq ($(shell uname -sm),Darwin x86_64)
CFLAGS += -mavx -DSQLITE_VEC_ENABLE_AVX
@ -188,10 +181,10 @@ publish-release:
# -k test_vec0_update
test-loadable: loadable
$(PYTHON) -m pytest -vv -s -x tests/test-*.py
uv run pytest -vv -s -x tests/test-*.py
test-loadable-snapshot-update: loadable
$(PYTHON) -m pytest -vv tests/test-loadable.py --snapshot-update
uv run pytest -vv tests/test-loadable.py --snapshot-update
test-loadable-watch:
watchexec --exts c,py,Makefile --clear -- make test-loadable