1 Star 1 Fork 0

simonxing/scipy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tox.ini 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
# '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.6', 'python3.7', etc.
[tox]
envlist = py35,py36,py37
skipsdist=True
[testenv]
deps=
pytest
numpy
cython
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/simonxing/scipy.git
git@gitee.com:simonxing/scipy.git
simonxing
scipy
scipy
master

搜索帮助