Commit d0813279 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

added hint for commands

parent 95994b6a
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -44,7 +44,13 @@ coverage html
# zip -q -r htmlcov.zip htmlcov

echo "===================== importability ====================="
echo " > try 'from $JOB_NAME.top_level_interface import *'"
python -c "from $JOB_NAME.top_level_interface import *"
if [ "$?" != 0 ]; then
  echo "Success!"
else
  echo "Failed!"
fi

echo "===================== POST BUILD BELOW ====================="