From 0bd91715561a345de24774cc93fdd1ed93a36446 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Fri, 25 Oct 2024 09:48:57 +0200 Subject: [PATCH] Avoiding timeout for bloom tests. --- .github/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c563fa27..d0764783 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -202,4 +202,6 @@ jobs: export EXTRA_PYTEST="${{ needs.build-and-push.outputs.extra_pytest }}" export HF_TOKEN=${{ secrets.HF_TOKEN }} echo $DOCKER_IMAGE + # pull image to avoid timeout on some tests. + docker pull $DOCKER_IMAGE pytest -s -vv integration-tests ${PYTEST_FLAGS} ${EXTRA_PYTEST}