wuttamess/tasks.py

25 lines
380 B
Python
Raw Normal View History

2024-09-10 09:56:30 -05:00
# -*- coding: utf-8; -*-
"""
Tasks for WuttaMess
"""
import os
import shutil
from invoke import task
@task
def release(c, skip_tests=False):
"""
Release a new version of WuttaMess
"""
if not skip_tests:
c.run("pytest")
2024-09-10 09:56:30 -05:00
if os.path.exists("dist"):
shutil.rmtree("dist")
2024-09-10 09:56:30 -05:00
c.run("python -m build --sdist")
c.run("twine upload dist/*")