noxfile added

This commit is contained in:
Paul Warren 2024-10-09 16:48:52 +11:00
parent 37d33a3bd1
commit dd923fbaa7

11
noxfile.py Normal file
View file

@ -0,0 +1,11 @@
import nox
@nox.session
def tests(session):
session.install('pytest')
session.run('pytest')
def lint(session):
session.install('flake8')
session.run('flake8', '--import-order-style', 'google')