From 0a5afe00c6a9f574fdd63e388381eacd82c0042c Mon Sep 17 00:00:00 2001 From: taieeuu Date: Mon, 23 Dec 2024 23:34:54 +0800 Subject: [PATCH] fix: dependencies Signed-off-by: taieeuu --- .github/workflows/monodocs_build.yml | 1 + .github/workflows/pythonbuild.yml | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/monodocs_build.yml b/.github/workflows/monodocs_build.yml index 6ecaa2cf87..46da3c14a5 100644 --- a/.github/workflows/monodocs_build.yml +++ b/.github/workflows/monodocs_build.yml @@ -57,4 +57,5 @@ jobs: DOCSEARCH_API_KEY: fake_docsearch_api_key # must be set to get doc build to succeed run: | conda activate monodocs-env + pip install grpcio-health-checking==1.49.0 make -C docs clean html SPHINXOPTS="-W -vvv" diff --git a/.github/workflows/pythonbuild.yml b/.github/workflows/pythonbuild.yml index 54ebaf06c7..ba1bc8b5bd 100644 --- a/.github/workflows/pythonbuild.yml +++ b/.github/workflows/pythonbuild.yml @@ -294,15 +294,13 @@ jobs: tags: localhost:30000/flytekit:dev cache-from: type=gha cache-to: type=gha,mode=max - - name: Install dependencies - run: | - pip install grpcio-health-checking==1.49.0 - name: Integration Test with coverage env: FLYTEKIT_IMAGE: localhost:30000/flytekit:dev FLYTEKIT_CI: 1 PYTEST_OPTS: -n2 run: | + pip install grpcio-health-checking==1.49.0 make ${{ matrix.makefile-cmd }} - name: Codecov uses: codecov/codecov-action@v3.1.0