-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnoxfile.py
More file actions
28 lines (18 loc) · 766 Bytes
/
Copy pathnoxfile.py
File metadata and controls
28 lines (18 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
import nox
nox.options.sessions = ['mypy', 'test']
nox.options.reuse_existing_virtualenvs = True
@nox.session(python='3.9')
def mypy(session):
session.install('.', 'mypy')
session.run('mypy', 'src/uhid')
@nox.session(python=['3.7', '3.8', '3.9'])
def test(session):
htmlcov_output = os.path.join(session.virtualenv.location, 'htmlcov')
xmlcov_output = os.path.join(session.virtualenv.location, f'coverage-{session.python}.xml')
session.install('.[test]')
session.run('sudo', 'python', '-m', 'pytest',
'--cov', '--cov-config', 'setup.cfg',
f'--cov-report=html:{htmlcov_output}',
f'--cov-report=xml:{xmlcov_output}',
'tests/', *session.posargs, external=True)