9 lines
227 B
Python
9 lines
227 B
Python
import nox
|
|
|
|
|
|
@nox.session(python=["3.7", "3.8", "3.9"])
|
|
def tests(session):
|
|
args = session.posargs or ["--cov", "-m", "not e2e"]
|
|
session.run("poetry", "install", external=True)
|
|
session.run("pytest", *args)
|
|
pass
|