加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tox.ini 761 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dustin Ingram 提交于 2016-10-19 18:37 . Drop support for Python 2.6
# this file is *not* meant to cover or endorse the use of tox or pytest or
# testing in general,
#
# It's meant to show the use of:
#
# - check-manifest
# confirm items checked into vcs are in your sdist
# - python setup.py check (using the readme_renderer extension)
# confirms your long_description will render correctly on pypi
#
# and also to help confirm pull requests to this project.
[tox]
envlist = py{27,33,34}
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
deps =
check-manifest
readme_renderer
flake8
pytest
commands =
check-manifest --ignore tox.ini,tests*
python setup.py check -m -r -s
flake8 .
py.test tests
[flake8]
exclude = .tox,*.egg,build,data
select = E,W,F
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化