From f71e2cc31269ea086aaef6de55c17d62d25208b9 Mon Sep 17 00:00:00 2001 From: Florian Wilhelm Date: Thu, 28 Dec 2023 10:26:01 +0100 Subject: [PATCH] Fix stupid mistake in pyproject.toml about the env scripts --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4071543..8e1b741 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -234,7 +234,7 @@ dependencies = [ "jupyterlab", "ipython", ] -[tool.hatch.envs.scripts] +[tool.hatch.envs.default.scripts] cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/pytanis --cov=tests {args}" no-cov = "cov --no-cov {args}" debug = "cov --no-cov -s --pdb --pdbcls=IPython.core.debugger:Pdb {args}"