Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1

cpp-tests-ubuntu:
name: 🇨 Test 🐧
name: 🇨 Test 🐧
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
strategy:
Expand All @@ -39,7 +39,7 @@ jobs:
preset-name: ${{ matrix.preset }}

cpp-tests-macos:
name: 🇨 Test 🍎
name: 🇨 Test 🍎
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
strategy:
Expand All @@ -59,7 +59,7 @@ jobs:
preset-name: ${{ matrix.preset }}

cpp-tests-windows:
name: 🇨 Test 🏁
name: 🇨 Test 🏁
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
strategy:
Expand All @@ -79,7 +79,7 @@ jobs:
preset-name: ${{ matrix.preset }}

cpp-linter:
name: 🇨 Lint
name: 🇨 Lint
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-linter)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ repos:
types_or: [yaml, html, css, scss, javascript, json, json5]
priority: 5

## Format Markdown files with rumdl
## Format Markdown files with rumdl
- repo: https://github.com/rvben/rumdl-pre-commit
rev: v0.2.43
hooks:
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"myst_nb",
"sphinx_copybutton",
"sphinx_design",
"sphinx_llm.txt",
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
Expand Down
3 changes: 0 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ def _run_tests(
)
if extra_command:
session.run(*extra_command, env=env)
if "--cov" in session.posargs:
# try to use the lighter-weight `sys.monitoring` coverage core
env["COVERAGE_CORE"] = "sysmon"
session.run(
"uv",
"run",
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ filterwarnings = [

[tool.coverage]
run.source = ["mqt.debugger"]
run.core = "sysmon"
run.parallel = true
report.exclude_also = [
'\.\.\.',
'if TYPE_CHECKING:',
Expand Down Expand Up @@ -304,7 +306,7 @@ build = [
]
test = [
"pytest>=9.0.1",
"pytest-cov>=7.0.0",
"pytest-cov>=7.1.0",
"pytest-console-scripts>=1.4.1",
"pytest-sugar>=1.1.1",
"pytest-xdist>=3.8.0",
Expand All @@ -327,6 +329,7 @@ docs = [
"sphinx>=8.2.3; python_version >= '3.11'",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.6.1",
"sphinx-llm",
"sphinx-hoverxref>=1.4.2",
"sphinxcontrib-bibtex>=2.6.5",
"sphinxcontrib-svg2pdfconverter>=1.3.0",
Expand Down
38 changes: 36 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading