From: Mike Bayer Date: Wed, 19 Sep 2018 18:55:09 +0000 (-0400) Subject: Allow pip opts to be specified in environment X-Git-Tag: rel_1_3_0b1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2280000005a75a3b43025339a99a03910e0d2de6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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