aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-11-26 13:56:05 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2022-11-26 13:56:05 +0200
commit627ecdf419857ab387c82bb29b9adc8fed003bc5 (patch)
treece7cebe273b0ee583b9ed94bb279e3449f77f18d /tox.ini
parentPythonCheck: stop warning about eclass use on python:2.7 deps (diff)
downloadpkgcheck-627ecdf419857ab387c82bb29b9adc8fed003bc5.tar.gz
pkgcheck-627ecdf419857ab387c82bb29b9adc8fed003bc5.tar.bz2
pkgcheck-627ecdf419857ab387c82bb29b9adc8fed003bc5.zip
readd updated tox.ini
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini21
1 files changed, 21 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 00000000..06b8ef12
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,21 @@
+[tox]
+envlist = py3{9,10,11}
+skip_missing_interpreters = True
+isolated_build = True
+
+[testenv]
+# force latest virtualenv/pip
+download = true
+extras =
+ test
+commands =
+ pytest
+
+# build docs
+[testenv:docs]
+skip_install = true
+extras =
+ doc
+commands =
+ make man
+ make html