aboutsummaryrefslogtreecommitdiff
path: root/noxfile.py
blob: 31684fd5e8579b8e2bed5fe71e0d7723eaa064f5 (plain)
1
2
3
4
5
6
7
8
9
import nox


# Thanks https://cjolowicz.github.io/posts/hypermodern-python-02-testing/

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