entrypoint-tests.sh 229 B

123456789101112
  1. #!/bin/bash -e
  2. # wait for dependencies
  3. echo "waiting for dependencies ..."
  4. ./wait
  5. # start cron
  6. /root/cronhook/start-cron.sh &
  7. echo Starting API tests ...
  8. coverage run --source='.' manage.py test -v 3 --noinput
  9. coverage report