pyFroniusReg/noxfile.py

12 lines
212 B
Python
Raw Normal View History

2024-10-09 16:48:52 +11:00
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')