Skip to content

Commit

Permalink
fix: ensure pytest ignores tests._lib
Browse files Browse the repository at this point in the history
  • Loading branch information
philtweir committed Sep 9, 2024
1 parent fe5253c commit c28a31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
pip install pytest pytest-cov
pip install --no-build-isolation --no-deps --disable-pip-version-check -e .
python -m pytest --doctest-modules --ignore=example
python -m pytest --doctest-modules --ignore=example --ignore=tests/_lib
python -m doctest -v docs/*.md
# name: Test examples
# run: |
Expand All @@ -46,7 +46,7 @@ jobs:
conda install -c /tmp/output/noarch/*.conda --update-deps --use-local dewret -y
conda install pytest
$CONDA/bin/pytest
python -m pytest --doctest-modules --ignore=example
python -m pytest --doctest-modules --ignore=example --ignore=tests/_lib
python -m doctest -v docs/*.md
# name: Test examples
# run: |
Expand Down

0 comments on commit c28a31e

Please sign in to comment.