From 5b2a929063d02e78f689a3cc2ac8ed015013bae0 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 11:31:18 +0100 Subject: [PATCH] change cli command to "abratest" --- main.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 03f61b0..e7b02a2 100644 --- a/main.py +++ b/main.py @@ -34,7 +34,7 @@ OUTPUT_DIR = Path("./test-output").resolve() subprocess.run( [ - "pytest-abra", + "abratest", "--env_paths", ENV_PATHS, "--recipes_dir", diff --git a/pyproject.toml b/pyproject.toml index 29d8ee9..c951457 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ pytest11 = [ ] [project.scripts] -pytest-abra = "pytest_abra.cli:run" +abratest = "pytest_abra.cli:run" [build-system] requires = ["hatchling"]