From f7e2818902d6f3731dee31fc255d93d03d16b612 Mon Sep 17 00:00:00 2001 From: Roland Guichard Date: Tue, 3 Dec 2024 15:10:29 +0000 Subject: [PATCH] Generate coverage report as XML. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index baa164bc..e5b618ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,7 +108,7 @@ dependencies = [ features = ["pulser", "visualization", "horqrux", "mlflow"] [tool.hatch.envs.default.scripts] -test = "pytest -n auto --cov-report lcov --cov-config=pyproject.toml --cov=qadence --cov=tests --ignore=./tests/test_examples.py {args}" +test = "pytest -n auto --cov-report=xml --cov-config=pyproject.toml --cov=qadence --cov=tests --ignore=./tests/test_examples.py {args}" test-examples = "pytest ./tests/test_examples.py {args}" no-cov = "cov --no-cov {args}" test-docs = "mkdocs build --clean --strict"