From 8da43e06171c5d796dc4b518412e6ea146dee421 Mon Sep 17 00:00:00 2001 From: michal Date: Thu, 7 May 2020 00:20:34 -0400 Subject: [PATCH] Install extra dependencies required by some models and log test durations --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2d75edff..d035f3b2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,8 +24,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest + pip install pytest pytest-timeout if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + pip install scipy + pip install git+https://github.com/mapillary/inplace_abn.git@v1.0.11 - name: Run tests run: | - pytest + pytest -vv --durations=0 ./tests