ghub/tasks.py
2021-11-04 22:59:03 -04:00

21 lines
274 B
Python

from invoke import task
from cli import main
@task
def run(c):
main()
@task
def test(c):
c.run("pytest --cov=. *_tests.py")
@task
def black(c):
"""
Runs The uncompromising Python code formatter on specific python files.
"""
c.run("black *.py")