Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions {{cookiecutter.project_name}}/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
minversion = 2.0
envlist = py{34,35,36,py},style
envlist = py{34,35,36,37,38,py},mypy,style

[testenv]
deps = -r{toxinidir}/test-requirements.txt
Expand All @@ -23,8 +28,11 @@ deps =
isort
yapf
commands =
isort -rc -c -df sphinxcontrib tests
yapf -rd sphinxcontrib tests
# show diff that would sort imports, instead modify files in-place
isort --check-only --diff sphinxcontrib tests
# show diff that would format code, don't modify files
yapf --recursive --diff sphinxcontrib tests
# report style violations
flake8 sphinxcontrib tests setup.py

[travis]
Expand Down