From 2280000005a75a3b43025339a99a03910e0d2de6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 19 Sep 2018 14:55:09 -0400 Subject: [PATCH] Allow pip opts to be specified in environment To allow a custom requirements file to be passed in, add a generic passthrough to the tox install command. Change-Id: Ic2e46a27914b76802dc26143e34ad507978af474 --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index f7c5fd5c8b..66ff7ead93 100644 --- a/tox.ini +++ b/tox.ini @@ -10,6 +10,8 @@ envlist = py{27,34,35,36,37}-{cext,nocext} # Jenkins etc. need to call "coverage erase" externally. cov_args=--cov=sqlalchemy --cov-report term --cov-append --cov-report xml --exclude-tag memory-intensive --exclude-tag timing-intensive -k "not aaa_profiling" +install_command=python -m pip install {env:TOX_PIP_OPTS} {opts} {packages} + usedevelop= cov: True -- 2.47.2