Fix rtd merge job to handle new tag uploaded
[releng/global-jjb.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index bcde1a5..29ba236 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -6,8 +6,9 @@ envlist =
   jjb,
   jjb-compare-xml,
   jjb-latest,
-  jjb-version
-  license
+  jjb-version,
+  license,
+  pre-commit
 skipsdist = true
 passenv = TOX_WORK_DIR
 toxworkdir = {env:TOX_WORK_DIR:/tmp/v}
@@ -22,7 +23,8 @@ deps =
     requests~=2.21.0
     # Markdown lint requires nodejs
     nodeenv
-    numpy
+    # numpy-1.17.0 requires python 3.5
+    numpy~=1.16.4
 commands =
     nodeenv -p
     npm install --global remark-cli remark-lint write-good
@@ -30,6 +32,7 @@ commands =
     coala --non-interactive
 
 [testenv:docs]
+basepython = python3
 deps = -rrequirements.txt
 commands =
     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
@@ -39,30 +42,41 @@ commands =
     ./ensure-documented.sh
 
 [testenv:jjb]
+basepython = python3
 deps =
     jenkins-job-builder==2.8.0
 commands =
     jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test
 
 [testenv:jjb-compare-xml]
+basepython = python3
 deps =
     jenkins-job-builder
 commands =
     ./jjb-compare-xml.sh
 
 [testenv:jjb-latest]
+basepython = python3
 deps =
     jenkins-job-builder
 commands =
     jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test
 
 [testenv:jjb-version]
+basepython = python3
 commands = python {toxinidir}/check_jjb_version.py
 
 [testenv:license]
 deps = lftools
 commands = lftools license check-dir -r '.+' shell
 
+[testenv:pre-commit]
+basepython = python3
+deps =
+    pre-commit
+commands =
+    pre-commit run --all-files
+
 #########
 # Tools #
 #########