From f30fe10251ce192a62a6549b1d95f2812d838d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Sat, 14 Mar 2015 12:16:41 -0400 Subject: [PATCH] Try custom tox install_command --- pip_install.sh | 5 +++++ tox.ini | 1 + 2 files changed, 6 insertions(+) create mode 100755 pip_install.sh diff --git a/pip_install.sh b/pip_install.sh new file mode 100755 index 000000000..07826b602 --- /dev/null +++ b/pip_install.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +echo "$@" +pip wheel "$@" +pip install --upgrade "$@" diff --git a/tox.ini b/tox.ini index c986250c5..71bb22eab 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,7 @@ envlist = {py27,py32,py33,py34}-django{17,18beta} [testenv] +install_command = ./pip_install.sh {opts} {packages} commands = ./runtests.py --fast setenv = PYTHONDONTWRITEBYTECODE=1