build: fix test commands for release task
This commit is contained in:
parent
1e2a467551
commit
f943d65f1c
1 changed files with 2 additions and 1 deletions
3
tasks.py
3
tasks.py
|
|
@ -15,7 +15,8 @@ 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("pytest")
|
c.run("pytest -m 'not versioned'")
|
||||||
|
c.run("pytest -m 'versioned'")
|
||||||
|
|
||||||
# rebuild pkg
|
# rebuild pkg
|
||||||
if os.path.exists("dist"):
|
if os.path.exists("dist"):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue