Skip to content

Commit 8da43e0

Browse files
committed
Install extra dependencies required by some models and log test durations
1 parent 16f1f77 commit 8da43e0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install pytest
27+
pip install pytest pytest-timeout
2828
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
pip install scipy
30+
pip install git+https://github.com/mapillary/inplace_abn.git@v1.0.11
2931
- name: Run tests
3032
run: |
31-
pytest
33+
pytest -vv --durations=0 ./tests

0 commit comments

Comments
 (0)