We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 703a7cd commit efec83cCopy full SHA for efec83c
2 files changed
pyproject.toml
@@ -20,6 +20,7 @@ version = "0.0.0"
20
# - or: python = ">=3.10"
21
22
[tool.poetry.dependencies]
23
+# IMPORTANT: see the "poetry.lock.md" file when changing dependencies!!!
24
imcf-fiji-mocks = ">=0.13.0"
25
python = ">=2.7"
26
python-micrometa = "^15.2.3"
@@ -54,3 +55,9 @@ ignore = [
54
55
56
[tool.ruff.lint.pydocstyle]
57
convention = "numpy"
58
+
59
+[tool.coverage.report]
60
+exclude_also = [
61
+ 'no-cover:jython-only',
62
+ 'cover:jython',
63
+]
src/imcflibs/imagej/objects3d.py
@@ -80,7 +80,7 @@ def segment_3d_image(
80
max_vol=None,
81
remove_touching_borders=False,
82
remove_touching_borders_z=False,
83
-): # pragma: no cover (Jython-only)
+): # cover:jython
84
"""Segment a 3D binary image to get a labelled stack.
85
86
Parameters
0 commit comments