From d2d0206b4503e8d6b525df5e737cf24421591493 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 13 Jul 2024 15:16:45 -0500 Subject: [PATCH] build: run `pytest` but avoid `tox` when preparing release buildbot can let us know if something goes wrong with an atypical python version etc. --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 4ca01bab..6983dbea 100644 --- a/tasks.py +++ b/tasks.py @@ -36,7 +36,7 @@ def release(c, skip_tests=False): Release a new version of 'Tailbone'. """ if not skip_tests: - c.run('tox') + c.run('pytest') if os.path.exists('dist'): shutil.rmtree('dist')