2019-02-01 09:58:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
. hooks/common
|
|
|
|
|
2019-10-10 14:08:31 +02:00
|
|
|
# test 'branches' and 'this' (i.e. pull request) builds
|
2019-10-15 00:47:19 +02:00
|
|
|
if [ "${BUILD}" == "branches" ] \
|
|
|
|
|| [ "${BUILD}" == "this" ] \
|
|
|
|
|| [ "${DEBUG}" == "true" ]; then
|
2019-02-01 09:58:07 +01:00
|
|
|
echo "🐳🐳🐳 Testing"
|
2019-10-15 00:47:19 +02:00
|
|
|
VERSION=latest docker-compose run netbox ./manage.py test
|
|
|
|
VERSION=snapshot docker-compose run netbox ./manage.py test
|
2019-10-10 14:08:31 +02:00
|
|
|
docker-compose down -v
|
2019-02-01 09:58:07 +01:00
|
|
|
else
|
2019-10-10 12:42:10 +02:00
|
|
|
echo "🐳🐳🐳 No tests are implemented for build '${BUILD}'."
|
2019-02-01 09:58:07 +01:00
|
|
|
fi
|