Skip to content

Commit

Permalink
ci: do not require black for tests (#1693)
Browse files Browse the repository at this point in the history
Signed-off-by: Joan Fontanals Martinez <joan.martinez@jina.ai>
  • Loading branch information
JoanFM committed Jul 10, 2023
1 parent 64bbf14 commit 0dd4953
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 0dd4953

Please sign in to comment.