Switch invoke tests test runner to Pytest

This commit is contained in:
Justin Mayer 2019-11-10 20:10:59 -08:00
commit 2d232d15aa

View file

@ -21,7 +21,7 @@ PRECOMMIT = (
@task @task
def tests(c): def tests(c):
"""Run the test suite""" """Run the test suite"""
c.run(f"{VENV}/bin/python -Wd -m unittest discover", pty=True) c.run(f"{VENV}/bin/pytest", pty=True)
@task @task