Skip to content
Snippets Groups Projects
Commit 676bc8a3 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

don't run coverage report

parent 9bfd88f9
No related branches found
No related tags found
1 merge request!172Draft: Changes for compatibility with pystencils 2.0
Pipeline #77935 passed with warnings
...@@ -117,8 +117,10 @@ def run_testsuite(session: nox.Session, coverage: bool = True): ...@@ -117,8 +117,10 @@ def run_testsuite(session: nox.Session, coverage: bool = True):
] ]
session.run(*args) session.run(*args)
session.run("coverage", "html")
session.run("coverage", "xml") if coverage:
session.run("coverage", "html")
session.run("coverage", "xml")
@nox.session(python=["3.10", "3.11", "3.12", "3.13"]) @nox.session(python=["3.10", "3.11", "3.12", "3.13"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment