forked from grantjenks/python-sortedcontainers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
29 lines (26 loc) · 675 Bytes
/
Copy pathtox.ini
File metadata and controls
29 lines (26 loc) · 675 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
29
[tox]
envlist={py35,py36,py37,py38}{,-cython},pypy3,pylint
skip_missing_interpreters=True
[testenv]
commands=
pytest {posargs}
deps=
cython: Cython
pytest
setenv=
PY_IGNORE_IMPORTMISMATCH=1
[pytest]
addopts=
--doctest-modules
--doctest-glob "*.rst"
--ignore tests/benchmark.py
--ignore tests/benchmark_plot.py
--ignore tests/benchmark_sorteddict.py
--ignore tests/benchmark_sortedlist.py
--ignore tests/benchmark_sortedset.py
--ignore tests/plot_lengths_histogram_add.py
--ignore tests/plot_lengths_histogram_delitem.py
testpaths=docs sortedcontainers tests
[testenv:pylint]
deps=pylint
commands=pylint sortedcontainers