Codebase list python-lsassy / a5c35116-31b0-44e7-bdb9-62db9cde26a4/main noxfile.py
a5c35116-31b0-44e7-bdb9-62db9cde26a4/main

Tree @a5c35116-31b0-44e7-bdb9-62db9cde26a4/main (Download .tar.gz)

noxfile.py @a5c35116-31b0-44e7-bdb9-62db9cde26a4/mainraw · 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")