Skip to content

Commit 0734c0d

Browse files
committed
Update test workflow
1 parent b1b6e7c commit 0734c0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
pip install pytest pytest-timeout
3434
- name: Install torch on mac
3535
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 }}
3737
- name: Install torch on ubuntu
3838
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
4040
- name: Install requirements
4141
run: |
4242
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
4444
- name: Run tests
4545
run: |
4646
pytest -vv --durations=0 ./tests

0 commit comments

Comments
 (0)