File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 82
82
python -c "from torch import __version__ as ver ; assert str(ver).split('+')[0] == '$(TORCH_VERSION)', f'PyTorch: installed {ver} but expected $(TORCH_VERSION)'"
83
83
displayName: "Env details"
84
84
85
- - bash : pytest -v
85
+ - bash : pytest -v --durations=100
86
86
displayName : " All tests"
87
87
timeoutInMinutes : " 15"
88
88
@@ -106,7 +106,7 @@ jobs:
106
106
107
107
- bash : |
108
108
# without env var, it filters out all tests
109
- PL_RUN_CUDA_TESTS=0 pytest tests/ext_thunder/test_thunder_networks.py -v
109
+ PL_RUN_CUDA_TESTS=0 pytest tests/ext_thunder/test_thunder_networks.py -v --durations=50
110
110
displayName: "Extra tests for Thunder [main branch]"
111
111
condition: eq(variables['dependency'], 'compiler')
112
112
env:
Original file line number Diff line number Diff line change 82
82
include :
83
83
- { os: "macOS-14", python-version: "3.9" }
84
84
- { os: "windows-2022", python-version: "3.9" }
85
- timeout-minutes : 25
85
+ timeout-minutes : 35
86
86
steps :
87
87
- name : Checkout generic
88
88
uses : actions/checkout@v4
@@ -118,7 +118,7 @@ jobs:
118
118
- name : Run tests
119
119
env :
120
120
HF_TOKEN : ${{ secrets.HF_TOKEN }}
121
- run : pytest -v litgpt/ tests/ --timeout 180
121
+ run : pytest -v litgpt/ tests/ --timeout= 180 --durations=100
122
122
123
123
- name : Show cache
124
124
run : |
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ classifiers = [
26
26
]
27
27
dependencies = [
28
28
# download models:
29
- " huggingface-hub>=0.23.5" ,
29
+ " huggingface-hub>=0.23.5,<0.33 " ,
30
30
" jsonargparse[signatures]>=4.30.1,<=4.32.1; python_version<='3.9'" , # 4.33 does not seem to be compatible with Python 3.9
31
31
" jsonargparse[signatures]>=4.37; python_version>'3.9'" , # required to work with python3.12+
32
32
" lightning>=2.5" ,
You can’t perform that action at this time.
0 commit comments