1
0
Fork 0
mirror of synced 2024-05-18 11:23:42 +12:00

ignore build dist dirs in pytest discovery

This commit is contained in:
Nick Sweeting 2021-04-14 04:49:16 -04:00
parent 6c06da5581
commit 687c34af3e
2 changed files with 2 additions and 2 deletions

View file

@ -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 --ignore=archivebox/vendor
python -m pytest -s --basetemp=tests/out --ignore=archivebox/vendor --ignore=deb_dist --ignore=pip_dist --ignore=brew_dist
docker_tests:
runs-on: ubuntu-latest

View file

@ -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 --ignore=archivebox/vendor
pytest -s --basetemp=tests/out --ignore=archivebox/vendor --ignore=deb_dist --ignore=pip_dist --ignore=brew_dist