diff --git a/noxfile.py b/noxfile.py new file mode 100644 index 0000000..bd1e55f --- /dev/null +++ b/noxfile.py @@ -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') +