File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ jobs:
33
33
pip install pytest pytest-timeout
34
34
- name : Install torch on mac
35
35
if : startsWith(matrix.os, 'macOS')
36
- run : pip install torch==${{ matrix.torch }} torchvision==${{ matrix.torchvision }}
36
+ run : pip install --no-cache-dir torch==${{ matrix.torch }} torchvision==${{ matrix.torchvision }}
37
37
- name : Install torch on ubuntu
38
38
if : startsWith(matrix.os, 'ubuntu')
39
- run : pip install torch==${{ matrix.torch }}+cpu torchvision==${{ matrix.torchvision }}+cpu -f https://download.pytorch.org/whl/torch_stable.html
39
+ run : pip install --no-cache-dir torch==${{ matrix.torch }}+cpu torchvision==${{ matrix.torchvision }}+cpu -f https://download.pytorch.org/whl/torch_stable.html
40
40
- name : Install requirements
41
41
run : |
42
42
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
43
- pip install git+https://github.com/mapillary/[email protected] .11
43
+ pip install --no-cache-dir git+https://github.com/mapillary/[email protected] .12
44
44
- name : Run tests
45
45
run : |
46
46
pytest -vv --durations=0 ./tests
You can’t perform that action at this time.
0 commit comments