Skip to content

Commit

Permalink
Avoiding timeout for bloom tests. (#2693)
Browse files Browse the repository at this point in the history
* Avoiding timeout for bloom tests.

* Skip the test let's see if it's always the first tests that fails.

* Fail early.

* Pulling ?

* No early exit.
  • Loading branch information
Narsil authored Oct 26, 2024
1 parent a6b02da commit 8a8794a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,5 @@ jobs:
export EXTRA_PYTEST="${{ needs.build-and-push.outputs.extra_pytest }}"
export HF_TOKEN=${{ secrets.HF_TOKEN }}
echo $DOCKER_IMAGE
docker pull $DOCKER_IMAGE
pytest -s -vv integration-tests ${PYTEST_FLAGS} ${EXTRA_PYTEST}
2 changes: 1 addition & 1 deletion integration-tests/models/test_bloom_560m.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@pytest.fixture(scope="module")
def bloom_560_handle(launcher):
with launcher("bigscience/bloom-560m") as handle:
with launcher("bigscience/bloom-560m", num_shard=1) as handle:
yield handle


Expand Down

0 comments on commit 8a8794a

Please sign in to comment.