Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/api_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Install system dependencies (Windows)
if: runner.os == 'Windows'
run: |
choco install cmake -y
echo "cmake is pre-installed on Windows runner and will also be installed via pip"

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -429,11 +429,11 @@ jobs:
$env:SERVER_URL = "http://127.0.0.1:${{ env.SERVER_PORT }}"

if ($env:HAS_SECRETS -eq "true") {
Write-Host "Running full test suite with VLM/Embedding"
uv run python -m pytest . -v --html=api-test-report.html --self-contained-html
Write-Host "Running full test suite with VLM/Embedding (Windows: skipping filesystem tests)"
uv run python -m pytest . -v --html=api-test-report.html --self-contained-html --ignore=filesystem/
} else {
Write-Host "Running basic tests only (no VLM/Embedding)"
uv run python -m pytest . -v --html=api-test-report.html --self-contained-html --ignore=retrieval/ --ignore=resources/test_pack.py --ignore=resources/test_wait_processed.py --ignore=admin/ --ignore=skills/ --ignore=system/test_system_status.py --ignore=system/test_is_healthy.py --ignore=system/test_system_wait.py -k "not test_observer"
Write-Host "Running basic tests only (no VLM/Embedding, Windows: skipping filesystem tests)"
uv run python -m pytest . -v --html=api-test-report.html --self-contained-html --ignore=retrieval/ --ignore=resources/test_pack.py --ignore=resources/test_wait_processed.py --ignore=admin/ --ignore=skills/ --ignore=system/test_system_status.py --ignore=system/test_is_healthy.py --ignore=system/test_system_wait.py --ignore=filesystem/ -k "not test_observer"
}
continue-on-error: true

Expand Down
Loading