forked from marcelm/cutadapt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
59 lines (51 loc) · 1.01 KB
/
Copy pathtox.ini
File metadata and controls
59 lines (51 loc) · 1.01 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tox]
envlist = flake8,py36,py37,py38,py39,mypy,docs
requires = Cython>=0.29.13
[testenv]
deps =
coverage
pytest
pytest-timeout
pytest-mock
setenv = PYTHONDEVMODE = 1
commands =
coverage run -m pytest --doctest-modules --pyargs cutadapt tests
coverage combine
coverage report
coverage xml
[testenv:docs]
basepython = python3.7
changedir = doc
deps =
sphinx
sphinx_issues
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:flake8]
basepython = python3.7
deps = flake8
skip_install = true
commands = flake8 src/ tests/
[testenv:mypy]
basepython = python3.7
deps = mypy
commands = mypy src/
[coverage:run]
branch = True
parallel = True
concurrency = multiprocessing
source_pkgs = cutadapt
source = tests
[coverage:paths]
source =
src/
*/site-packages/
[coverage:report]
precision = 1
exclude_lines =
pragma: no cover
def __repr__
[flake8]
max-line-length = 120
max-complexity = 16
select = E,F,W,C90,W504
extend_ignore = E128,E131,W503,E203