1
0
Fork 0

build: just run pytest, avoid tox when building release

This commit is contained in:
Lance Edgar 2024-07-14 11:10:54 -05:00
parent 5197fa9ae9
commit 8ae140555a

View file

@ -15,7 +15,7 @@ def release(c, skip_tests=False):
Release a new version of WuttJamaican
"""
if not skip_tests:
c.run('tox')
c.run('pytest')
# rebuild pkg
if os.path.exists('dist'):