3
0
Fork 0

build: fix test commands for release task

This commit is contained in:
Lance Edgar 2025-12-15 16:30:25 -06:00
parent 1e2a467551
commit f943d65f1c

View file

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