add more tests for datakitchen functionalities, add regression tests for freqai_interface train/backtest

This commit is contained in:
robcaulk
2022-07-20 12:56:46 +02:00
parent 9c051958a6
commit d43c146676
7 changed files with 415 additions and 119 deletions

View File

@@ -77,7 +77,15 @@ function updateenv() {
fi
fi
${PYTHON} -m pip install --upgrade -r ${REQUIREMENTS} ${REQUIREMENTS_HYPEROPT} ${REQUIREMENTS_PLOT}
REQUIREMENTS_FREQAI=""
read -p "Do you want to install dependencies for freqai [y/N]? "
dev=$REPLY
if [[ $REPLY =~ ^[Yy]$ ]]
then
REQUIREMENTS_FREQAI="-r requirements-freqai.txt"
fi
${PYTHON} -m pip install --upgrade -r ${REQUIREMENTS} ${REQUIREMENTS_HYPEROPT} ${REQUIREMENTS_PLOT} ${REQUIREMENTS_FREQAI}
if [ $? -ne 0 ]; then
echo "Failed installing dependencies"
exit 1