summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini11
1 files changed, 11 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 17fde13b9..95b827ae5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -187,6 +187,17 @@ deps =
commands =
{envbindir}/pyinstaller --noconfirm misc/qutebrowser.spec
+[testenv:pyinstaller32]
+# A copy of the pyinstaller environment above, to be used for 32-bit on Windows
+# to make sure the both installations are separated.
+# This doesn't actually do anything 32-bit specific, that part happens by
+# setting the PYTHON environment variable accordingly.
+basepython = {[testenv:pyinstaller]basepython}
+pip_version = {[testenv:pyinstaller]pip_version}
+passenv = {[testenv:pyinstaller]passenv}
+deps = {[testenv:pyinstaller]deps}
+commands = {[testenv:pyinstaller]commands}
+
[testenv:eslint]
# This is duplicated in travis_run.sh for Travis CI because we can't get tox in
# the JavaScript environment easily.