We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d322e14 commit 536b291Copy full SHA for 536b291
pyproject.toml
@@ -81,6 +81,16 @@ markers = [
81
# log_cli=true
82
# log_level=DEBUG
83
84
+[tool.coverage.run]
85
+source = ["optics_functions/"]
86
+
87
+[tool.coverage.report]
88
+precision = 2
89
+ignore_errors = true
90
+exclude_also = [
91
+ "if TYPE_CHECKING:", # do not count if TYPE_CHECKING block imports (ignored at runtime) for coverage
92
+ "except ImportError:", # do not count missing optional dependencies set to None, we monkeypatch and test that
93
+]
94
95
# ----- Dev Tools Configuration ----- #
96
0 commit comments