Codebase list python-lsassy / 457b7aeb-d70b-45cf-ad8b-109e5f5b319d/upstream/3.1.4 noxfile.py
457b7aeb-d70b-45cf-ad8b-109e5f5b319d/upstream/3.1.4

Tree @457b7aeb-d70b-45cf-ad8b-109e5f5b319d/upstream/3.1.4 (Download .tar.gz)

noxfile.py @457b7aeb-d70b-45cf-ad8b-109e5f5b319d/upstream/3.1.4raw · history · blame

1
2
3
4
5
6
7
import nox


@nox.session(python=["3.9", "3.7"])
def tests(session):
    session.run("poetry", "install", external=True)
    session.run("poetry", "run", "pytest",  "--cov")