13 lines
524 B
YAML
13 lines
524 B
YAML
pipeline:
|
|
run-tests:
|
|
image: python:3.12-slim
|
|
commands:
|
|
- pip install uv
|
|
- uv pip install --python /usr/local/bin/python3 --no-cache -r requirements.txt
|
|
- uv pip install --python /usr/local/bin/python3 -e .
|
|
- uv pip install --python /usr/local/bin/python3 pytest
|
|
- python3 -c "import duckdb; db = duckdb.connect(':memory:'); db.sql('install httpfs'); db.sql('install spatial')"
|
|
- pytest ./test/test_user.py
|
|
- pytest ./test/test_data.py
|
|
- pytest ./test/test_query.py
|