From b3d72438846a0f32f7c86e4368e976ec97ce2292 Mon Sep 17 00:00:00 2001 From: jdcaballerov Date: Wed, 16 Dec 2020 12:11:17 -0500 Subject: [PATCH] Ignore tests inside vendored modules --- .github/workflows/test.yml | 2 +- bin/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9a6c76f2..b5ab84b9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -90,7 +90,7 @@ jobs: # TODO: remove this exception for windows once we get tests passing on that platform if: ${{ !contains(matrix.os, 'windows') }} run: | - python -m pytest -s + python -m pytest -s --ignore=archivebox/vendor docker_tests: runs-on: ubuntu-latest diff --git a/bin/test.sh b/bin/test.sh index b33921af..8eb10b9e 100755 --- a/bin/test.sh +++ b/bin/test.sh @@ -14,4 +14,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )" source "$DIR/.venv/bin/activate" -pytest -s --basetemp=tests/out +pytest -s --basetemp=tests/out --ignore=archivebox/vendor