From 14ff5958fa3c058f54e56c8be3256470768d890f Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Wed, 20 Apr 2022 17:32:39 -0400 Subject: [PATCH] Install development requirements in install script --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index 25302a9..c23a54a 100755 --- a/install.sh +++ b/install.sh @@ -56,6 +56,10 @@ popd 2>/dev/null pip3 ${PIP_INSTALL} -e "${this_dir}/mimic3-http" +if [ -f "${this_dir}/requirements_dev.txt" ]; then + pip3 ${PIP_INSTALL} -r "${this_dir}/requirements_dev.txt" +fi + # ----------------------------------------------------------------------------- echo "OK"