From fc0eaffc81fafcc0fb554692f32efbed1c4b2683 Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 22 May 2024 03:58:26 -0400 Subject: [PATCH] feat: include token in client test like server tests (#1932) This PR simply includes the HF token in the client tests similar to how it's included in the server tests. This helps avoid CI failure due to rate limiting --- .github/workflows/client-tests.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/client-tests.yaml b/.github/workflows/client-tests.yaml index 1fa0b39d..ef7c217c 100644 --- a/.github/workflows/client-tests.yaml +++ b/.github/workflows/client-tests.yaml @@ -22,4 +22,5 @@ jobs: - name: Run tests run: | pip install pytest pytest-asyncio + export HUGGING_FACE_HUB_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }} make python-client-tests