Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
steps:
- name: Login to Hugging Face
run: |
hf auth login --token "$HF_USER_TOKEN" --add-to-git-credential
echo "$HF_USER_TOKEN" | hf auth login --token --add-to-git-credential
hf auth whoami
- name: Run pytest on CPU
run: pytest tests -vv --maxfail=10
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
steps:
- name: Login to Hugging Face
run: |
hf auth login --token "$HF_USER_TOKEN" --add-to-git-credential
echo "$HF_USER_TOKEN" | hf auth login --token --add-to-git-credential
hf auth whoami
- name: Run pytest on GPU
run: pytest tests -vv --maxfail=10
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
steps:
- name: Login to Hugging Face
run: |
hf auth login --token "$HF_USER_TOKEN" --add-to-git-credential
echo "$HF_USER_TOKEN" | hf auth login --token --add-to-git-credential
hf auth whoami
- name: Verify GPU availability
run: |
Expand All @@ -207,4 +207,4 @@ jobs:

- name: Run multi-GPU training tests
# TODO(Steven): Investigate why motors tests are failing in multi-GPU setup
run: pytest tests -vv --maxfail=10 --ignore=tests/motors/
run: pytest tests -vv --maxfail=10 --ignore=tests/motors/
Loading