forked from boxed/mutmut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
45 lines (40 loc) · 858 Bytes
/
tox.ini
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tox]
envlist = py3{7,8,9}
skip_missing_interpreters = True
[testenv]
commands = {envpython} -m pytest {posargs}
usedevelop = True
setenv = LANG=en_US.UTF-8
deps =
-rrequirements.txt
-rtest_requirements.txt
[testenv:coverage]
basepython = python3
usedevelop = True
commands =
{envpython} -m pytest --cov --cov-config setup.cfg --cov-report term-missing --cov-report html {posargs}
deps =
-rrequirements.txt
-rtest_requirements.txt
[testenv:lint]
basepython = python3
usedevelop = True
commands =
{envpython} -m flake8 mutmut tests setup.py {posargs}
deps =
flake8
[testenv:venv]
envdir = venv
usedevelop = True
basepython = python3.7
commands = {posargs:python --version}
deps =
-rrequirements.txt
-rtest_requirements.txt
whitelist_externals =
make
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39