We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9de383 commit 1efc484Copy full SHA for 1efc484
.github/workflows/cpu-tests.yml
@@ -123,14 +123,22 @@ jobs:
123
pip install '.[extra,compiler,test]' -U --upgrade-strategy eager
124
pip list
125
126
+ - name: Show cache before tests
127
+ run: |
128
+ pip install -q py-tree
129
+ echo "=== Cache contents before tests ==="
130
+ python -m py_tree -d 1 .cache-HF
131
+
132
- name: Run tests
133
env:
134
HF_TOKEN: ${{ secrets.HF_TOKEN }}
135
run: pytest -v litgpt/ tests/ --timeout=180 --durations=100
136
- - name: Show cache
137
+ - name: Show cache after tests
138
+ if: always()
139
run: |
140
pip install -q py-tree
141
+ echo "=== Cache contents after tests ==="
142
python -m py_tree -d 1 .cache-HF
143
144
testing-guardian:
0 commit comments