forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
52 lines (45 loc) · 1.59 KB
/
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
46
47
48
49
50
51
52
# 'Tox' is a tool for automating sdist/build/test cycles against
# multiple Python versions:
# https://pypi.python.org/pypi/tox
# https://tox.readthedocs.io
# Running the command 'tox' while in the root of the SciPy source
# directory will:
# - Create a SciPy source distribution (setup.py sdist)
# - Then for every supported version of Python:
# - Create a virtualenv in {homedir}/.tox/scipy/py$VERSION and
# install dependencies. (These virtualenvs are cached across
# runs unless you use --recreate.)
# - Use pip to install the SciPy sdist into the virtualenv
# - Run the SciPy tests
# To run against a specific subset of Python versions, use:
# tox -e py36,py37
# Extra arguments will be passed to test-installed-scipy.py. To run
# the full testsuite:
# tox full
# To run with extra verbosity:
# tox -- -v
# Tox assumes that you have appropriate Python interpreters already
# installed and that they can be run as 'python3.9', etc.
[tox]
envlist = py38,py39
skipsdist=True
[testenv]
deps=
pytest
numpy
cython
pybind11
changedir={envdir}
commands=
{envpython} {toxinidir}/runtests.py {posargs: --mode full}
[pycodestyle]
max_line_length = 79
statistics = True
ignore = E121,E122,E123,E125,E126,E127,E128,E226,E231,E251,E265,E266,E302,E402,E501,E712,E721,E731,E741,W291,W293,W391,W503,W504
exclude = scipy/__config__.py
[flake8]
max_line_length = 79
ignore = E121,E122,E123,E125,E126,E127,E128,E226,E231,E251,E265,E266,E302,E402,E501,E712,E721,E731,E741,
W291,W293,W391,W503,W504,
F401,F403,F405,F841
exclude = scipy/__config__.py,scipy/_lib/highs