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

Add EXTRA_INSTALL feature

parent 665b99e1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -20,6 +20,12 @@ if test -f requirements.txt; then
  pip install -r requirements.txt
fi

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

${py_exe} setup.py install

if test -d test; then