Commit af3fce27 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Install EXTRA_INSTALL before requirements

parent 784862d9
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -32,18 +32,18 @@ fi
# Not sure why the hell pip ends up there, but in Py3.3, it sometimes does.
export PATH=`pwd`/.env/local/bin:$PATH

if test -f requirements.txt; then
  pip install -r requirements.txt
fi

pip install pytest

if test "$EXTRA_INSTALL" != ""; then
  for i in $EXTRA_INSTALL ; do
    pip install $i
  done
fi

if test -f requirements.txt; then
  pip install -r requirements.txt
fi

pip install pytest

${py_exe} setup.py install

if test -d test; then