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
1 merge request!172Draft: Changes for compatibility with pystencils 2.0
Pipeline #77935 passed with warnings with stages
in 38 minutes and 5 seconds
......@@ -117,8 +117,10 @@ def run_testsuite(session: nox.Session, coverage: bool = True):
]
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"])
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment