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-06-14 07:38:55 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-06-14 10:06:25 +0300
commit7167b689b998d8822a40085a9395e3e4fc375b9c (patch)
tree3bbeda92ce539741ba809bf8f4f948a51f313976 /tox.ini
parent0e271f28a490d4335b703fb173193443b080fd2e (diff)
Do "twine check" on CI process
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 11 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index d9f040544..ccfd60f84 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 2.4.0
-envlist = docs,flake8,mypy,coverage,py{35,36,37,38,39},du{12,13,14,15}
+envlist = docs,flake8,mypy,twine,coverage,py{35,36,37,38,39},du{12,13,14,15}
[testenv]
usedevelop = True
@@ -88,6 +88,16 @@ extras =
commands =
python utils/doclinter.py CHANGES CONTRIBUTING.rst README.rst doc/
+[testenv:twine]
+basepython = python3
+description =
+ Lint package.
+deps =
+ twine
+commands =
+ python setup.py release bdist_wheel sdist
+ twine check dist/*
+
[testenv:bindep]
description =
Install binary dependencies.