perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / sortedcontainers / patches / 01-tox.ini.patch
bloba748caa3f6985a26fe6c483c42b1951b91dbadd1
1 https://github.com/grantjenks/python-sortedcontainers/issues/216
3 --- sortedcontainers-2.4.0.orig/tox.ini
4 +++ sortedcontainers-2.4.0/tox.ini
5 @@ -0,0 +1,24 @@
6 +[tox]
7 +envlist=py27,py34,py35,py36,py37,pypy,pypy3,lint
8 +skip_missing_interpreters=True
10 +[testenv]
11 +deps=pytest
12 +commands=python -m pytest
14 +[pytest]
15 +addopts=
16 + --doctest-modules
17 + --doctest-glob "*.rst"
18 + --ignore tests/benchmark.py
19 + --ignore tests/benchmark_plot.py
20 + --ignore tests/benchmark_sorteddict.py
21 + --ignore tests/benchmark_sortedlist.py
22 + --ignore tests/benchmark_sortedset.py
23 + --ignore tests/plot_lengths_histogram_add.py
24 + --ignore tests/plot_lengths_histogram_delitem.py
25 +testpaths=docs sortedcontainers tests
27 +[testenv:lint]
28 +deps=pylint
29 +commands=pylint sortedcontainers