habitmove/noxfile.py

9 lines
172 B
Python
Raw Normal View History

2021-12-15 13:58:06 +00:00
import nox
@nox.session(python=["3.7", "3.8", "3.9"])
def tests(session):
session.run("poetry", "install", external=True)
session.run("pytest", "--cov")
pass