From 19950956272ec1cc6f5d2fa874692a4166adbad0 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 14 Jul 2024 11:08:26 -0500 Subject: [PATCH] build: just run pytest, avoid tox when making release --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index a3ce31e..9f2850b 100644 --- a/tasks.py +++ b/tasks.py @@ -30,7 +30,7 @@ def release(c, skip_tests=False): Release a new version of WuttJamaican """ if not skip_tests: - c.run('tox') + c.run('pytest') # rebuild local tar.gz file for distribution if os.path.exists('WuttJamaican.egg-info'):