Skip to content

Commit 1ef8373

Browse files
committed
try to ignore more explicitly
1 parent b21deb1 commit 1ef8373

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
key: ${{needs.populate-cache.outputs.cache-key}}
163163
fail-on-cache-miss: true
164164
- name: pytest
165-
run: pytest --disable-pytest-warnings
165+
run: pytest --disable-pytest-warnings --ignore=bioimageio/core/backends --ignore=bioimageio/core/weight_converters
166166
env:
167167
BIOIMAGEIO_CACHE_PATH: bioimageio_cache
168168
RUN_EXPENSIVE_TESTS: ${{ matrix.run-expensive-tests && 'true' || 'false' }}

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ useLibraryCodeForTypes = true
4242
[tool.pytest.ini_options]
4343
addopts = "--cov=bioimageio --cov-report=xml --cov-append --capture=no --doctest-modules --failed-first --ignore=dogfood --ignore=bioimageio/core/backends --ignore=bioimageio/core/weight_converters"
4444
testpaths = ["bioimageio/core", "tests"]
45+
norecursdirs = [".*", "dist", "backends", "weight_converters"]
4546

4647
[tool.ruff]
4748
line-length = 88

0 commit comments

Comments
 (0)