summaryrefslogtreecommitdiff
path: root/plugins/ext_test/noxfile.py
blob: 75eab841d801af2b2e92ab364ab05a1de26fef06 (plain)
1
2
3
4
5
6
7
import nox


@nox.session(python=['3.6', '3.7', '3.8', '3.9'])
def tests(session):
    session.install('invoke', './[test]')
    session.run('invoke', 'pytest', '--junit', '--no-pty')