Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-11-11 20:50:43 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-11-11 20:50:43 +0300
commit279e547860ea68e3c357f55e608afec682a1f961 (patch)
treedc08e85ab0210538e30b5b801bf9d80ab49bfb3f /tox.ini
parent859b5fcea71f8d4f46e0ef3726e68df54bfbc3b7 (diff)
parent64fb1e56242d93ee0e8c317ab9e7643242b99658 (diff)
Merge branch '3.x'
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 12 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 3d40d2f97..253f3657c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -26,7 +26,7 @@ setenv =
PYTHONWARNINGS = all,ignore::ImportWarning:importlib._bootstrap_external,ignore::DeprecationWarning:site,ignore::DeprecationWarning:distutils
PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:} --color yes
commands=
- pytest --durations 25 {posargs}
+ python -X dev -m pytest --durations 25 {posargs}
[testenv:flake8]
basepython = python3
@@ -39,6 +39,17 @@ extras =
commands =
flake8 {posargs}
+[testenv:isort]
+basepython = python3
+description =
+ Run import sorting checks.
+whitelist_externals =
+ isort
+extras =
+ lint
+commands =
+ isort --check-only --diff .
+
[testenv:coverage]
basepython = python3
description =