From f943d65f1ce24510c56dccbd1e68f0e91f8324f6 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 15 Dec 2025 16:30:25 -0600 Subject: [PATCH] build: fix test commands for release task --- tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 0189843..1a51cac 100644 --- a/tasks.py +++ b/tasks.py @@ -15,7 +15,8 @@ def release(c, skip_tests=False): Release a new version of WuttJamaican """ if not skip_tests: - c.run("pytest") + c.run("pytest -m 'not versioned'") + c.run("pytest -m 'versioned'") # rebuild pkg if os.path.exists("dist"):