We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edecde1 commit 05c9684Copy full SHA for 05c9684
mise.toml
@@ -20,7 +20,11 @@ run = "uv run pytest"
20
21
[tasks.pytest-cov]
22
description = "Run Pytest with coverage"
23
-run = "uv run pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=getjump tests/ | tee pytest-coverage.txt"
+run = """
24
+#!/usr/bin/env bash
25
+set -euxo pipefail
26
+uv run pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=zutool tests/ | tee pytest-coverage.txt
27
+"""
28
29
[tasks.build]
30
description = "Build"
0 commit comments