build: just run pytest, avoid tox when building release
This commit is contained in:
parent
5197fa9ae9
commit
8ae140555a
2
tasks.py
2
tasks.py
|
@ -15,7 +15,7 @@ def release(c, skip_tests=False):
|
||||||
Release a new version of WuttJamaican
|
Release a new version of WuttJamaican
|
||||||
"""
|
"""
|
||||||
if not skip_tests:
|
if not skip_tests:
|
||||||
c.run('tox')
|
c.run('pytest')
|
||||||
|
|
||||||
# rebuild pkg
|
# rebuild pkg
|
||||||
if os.path.exists('dist'):
|
if os.path.exists('dist'):
|
||||||
|
|
Loading…
Reference in a new issue