Codebase list python-lsassy / 52088b9a-1e30-43ea-9dc5-e3ffdca42013/upstream/3.1.6 noxfile.py
52088b9a-1e30-43ea-9dc5-e3ffdca42013/upstream/3.1.6

Tree @52088b9a-1e30-43ea-9dc5-e3ffdca42013/upstream/3.1.6 (Download .tar.gz)

noxfile.py @52088b9a-1e30-43ea-9dc5-e3ffdca42013/upstream/3.1.6raw · 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")