From 0dd4953866faff685173ac5b6871279d545b2a50 Mon Sep 17 00:00:00 2001 From: Joan Fontanals Date: Mon, 10 Jul 2023 14:28:48 +0200 Subject: [PATCH] ci: do not require black for tests (#1693) Signed-off-by: Joan Fontanals Martinez --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a82474b005..7a2bcf033a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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()