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


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