Skip to content

Commit

Permalink
prevent wandb version error
Browse files Browse the repository at this point in the history
  • Loading branch information
zjowowen committed Apr 2, 2024
1 parent d7ccc9f commit cdd5ff4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
python -m pip install .
python -m pip install ".[test,k8s]"
python -m pip install transformers
if python --version | grep -q "Python 3.7"; then
pip install wandb==0.16.4
else
echo "Python version is not 3.7, skipping wandb installation"
fi
./ding/scripts/install-k8s-tools.sh
make unittest
- name: Upload coverage to Codecov
Expand Down

0 comments on commit cdd5ff4

Please sign in to comment.