fix(ci): install httpx and run pytest via python -m

This commit is contained in:
matt 2025-09-27 16:01:44 -07:00
parent c95b15ef56
commit eb5281623a
4 changed files with 6 additions and 2 deletions

View file

@ -37,7 +37,7 @@ jobs:
- name: Tests
run: |
pytest -q || true
python -m pytest -q || true
- name: Theme catalog validation (non-strict)
run: |
@ -56,4 +56,4 @@ jobs:
CSV_FILES_DIR: csv_files/testdata
RANDOM_MODES: "1"
run: |
pytest -q code/tests/test_random_determinism.py code/tests/test_random_build_api.py code/tests/test_seeded_builder_minimal.py code/tests/test_builder_rng_seeded_stream.py
python -m pytest -q code/tests/test_random_determinism.py code/tests/test_random_build_api.py code/tests/test_seeded_builder_minimal.py code/tests/test_builder_rng_seeded_stream.py