Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tox.ini update #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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