Codebase list python-lsassy / 92d8b75b-f45b-4ea2-aaef-b1c8577c92ef/main noxfile.py
92d8b75b-f45b-4ea2-aaef-b1c8577c92ef/main

Tree @92d8b75b-f45b-4ea2-aaef-b1c8577c92ef/main (Download .tar.gz)

noxfile.py @92d8b75b-f45b-4ea2-aaef-b1c8577c92ef/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")