Skip to content
This repository was archived by the owner on Sep 9, 2026. It is now read-only.
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:


docarray-test:
needs: [lint-ruff, check-black, import-test]
needs: [import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:


docarray-test-jac:
needs: [lint-ruff, check-black, import-test]
needs: [import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:


docarray-test-proto3:
needs: [lint-ruff, check-black, import-test]
needs: [import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
timeout-minutes: 30

docarray-test-tensorflow:
needs: [lint-ruff, check-black, import-test]
needs: [import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
timeout-minutes: 30

docarray-test-benchmarks:
needs: [lint-ruff, check-black, import-test]
needs: [import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -304,7 +304,7 @@ jobs:
poetry run pytest -m 'benchmark' tests
timeout-minutes: 30

# just for blocking the merge until all parallel core-test are successful
# just for blocking the merge until all parallel tests are successful
success-all-test:
needs: [docarray-test, docarray-test-proto3, docarray-doc-index, docarray-elastic-v8, docarray-test-tensorflow, docarray-test-benchmarks, import-test, check-black, check-mypy, lint-ruff]
if: always()
Expand Down