Skip to content

Commit fec762e

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

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 --cov=bioimageio --cov-report=xml --cov-append --capture=no --failed-first --doctest-modules --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
@@ -41,6 +41,7 @@ useLibraryCodeForTypes = true
4141

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"
44+
# FIXME: addopts is somehow not respected in the build.yaml workflow, so these opts are copied there!
4445
testpaths = ["bioimageio/core", "tests"]
4546

4647
[tool.ruff]

0 commit comments

Comments
 (0)