Codebase list python-lsassy / 262f915a-64d6-41ae-a585-1f5ce24e805f/upstream/3.1.4 noxfile.py
262f915a-64d6-41ae-a585-1f5ce24e805f/upstream/3.1.4

Tree @262f915a-64d6-41ae-a585-1f5ce24e805f/upstream/3.1.4 (Download .tar.gz)

noxfile.py @262f915a-64d6-41ae-a585-1f5ce24e805f/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")