funquail/api/compose/django/dev-entrypoint.sh

7 lines
123 B
Bash
Raw Normal View History

#!/bin/bash
set -e
if [ $1 = "pytest" ]; then
# let pytest.ini handle it
unset DJANGO_SETTINGS_MODULE
fi
exec "$@"