Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ filterwarnings = [

[tool.coverage]
run.source = ["mqt.yaqs"]
run.omit = [
"src/mqt/yaqs/digital/utils/qudit_dag_utils.py",
]

report.exclude_also = [
'\.\.\.',
'if TYPE_CHECKING:',
Expand Down Expand Up @@ -128,6 +132,8 @@ extra-paths = ["tests"]
[tool.ty.src]
exclude = [
"docs/**",
"src/mqt/yaqs/digital/utils/qudit_dag_utils.py",
"tests/digital/utils/test_qudit_dag_utils.py",
"experiments/**",
]

Expand Down Expand Up @@ -184,7 +190,8 @@ future-annotations = true
known-first-party = ["mqt.yaqs"]

[tool.ruff.lint.per-file-ignores]
"tests/**" = ["T20", "INP001"]
"tests/**" = ["T20", "INP001", "PLR6301", "DOC201"]
"tests/**/*.py" = ["T20", "INP001", "PLR6301", "DOC201"]
"docs/**" = ["T20", "INP001"]
"scripts" = ["T20", "INP001"]
"noxfile.py" = ["T20", "TID251"]
Expand Down
Loading
Loading