blob: 9872e19355dc45348d5659ca6085ee5d06086660 (
plain)
1
2
3
4
5
6
7
|
import nox
@nox.session(python=['3.7', '3.8', '3.9', '3.10', '3.11'])
def tests(session):
session.install('invoke', './[test]')
session.run('invoke', 'pytest', '--junit', '--no-pty')
|