refactor(ci): run tests thru run_tests.sh

This commit is contained in:
ethernet 2026-06-23 12:25:17 -04:00
parent c918d07b50
commit d4aec4e92f
2 changed files with 3 additions and 3 deletions

View file

@ -138,7 +138,7 @@ jobs:
NOUS_API_KEY: ""
run: |
source .venv/bin/activate
python scripts/run_tests_parallel.py tests/docker/ --file-timeout 300 -- -v --tb=short
scripts/run_tests.sh tests/docker/ --file-timeout 300 -- -v --tb=short
- name: Log in to Docker Hub
if: github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'release'

View file

@ -79,7 +79,7 @@ jobs:
run: uv cache prune --ci
- name: Run tests (slice ${{ matrix.slice }}/6)
# Per-file isolation via scripts/run_tests_parallel.py: discovers
# Per-file isolation via scripts/run_tests.sh: discovers
# every test_*.py file under tests/ (excluding integration/ + e2e/),
# then runs `python -m pytest <file>` in a freshly-spawned subprocess
# with bounded parallelism. No xdist, no shared workers, no
@ -104,7 +104,7 @@ jobs:
# just not perfectly balanced.
run: |
source .venv/bin/activate
python scripts/run_tests_parallel.py --slice ${{ matrix.slice }}/6
scripts/run_tests.sh --slice ${{ matrix.slice }}/6
env:
# Ensure tests don't accidentally call real APIs
OPENROUTER_API_KEY: ""