diff --git a/.github/noxfile.py b/.github/noxfile.py new file mode 100644 index 0000000..a3b9827 --- /dev/null +++ b/.github/noxfile.py @@ -0,0 +1,7 @@ +import nox + + +@nox.session +def tests(session): + session.install("pytest") + session.run("pytest")