Skip to content

Commit 8c51513

Browse files
authored
fix(ci): skip filesystem tests on Windows due to FUSE compatibility issues (#1111)
1 parent 4587f87 commit 8c51513

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/api_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,11 +429,11 @@ jobs:
429429
$env:SERVER_URL = "http://127.0.0.1:${{ env.SERVER_PORT }}"
430430
431431
if ($env:HAS_SECRETS -eq "true") {
432-
Write-Host "Running full test suite with VLM/Embedding"
433-
uv run python -m pytest . -v --html=api-test-report.html --self-contained-html
432+
Write-Host "Running full test suite with VLM/Embedding (Windows: skipping filesystem tests)"
433+
uv run python -m pytest . -v --html=api-test-report.html --self-contained-html --ignore=filesystem/
434434
} else {
435-
Write-Host "Running basic tests only (no VLM/Embedding)"
436-
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"
435+
Write-Host "Running basic tests only (no VLM/Embedding, Windows: skipping filesystem tests)"
436+
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"
437437
}
438438
continue-on-error: true
439439

0 commit comments

Comments
 (0)