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

13 lines
216 B
Python

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