Test script change

This commit is contained in:
zandercymatics 2023-10-17 13:20:11 -06:00
parent fc5436039d
commit d38c33e4d9
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 1 additions and 2 deletions

View file

@ -14,7 +14,7 @@ if [[ "$ENV_TYPE" == "pipenv" ]]; then
cd $REQS cd $REQS
pip3 install pipenv pip3 install pipenv
PIPENV_IGNORE_VIRTUALENVS=1 pipenv install PIPENV_IGNORE_VIRTUALENVS=1 pipenv install
cd $MANAGE_PATH && PIPENV_IGNORE_VIRTUALENVS=1 pipenv run python3 manage.py check --deploy --fail-level ${FAIL} ${ARGS} &> output.txt cd $MANAGE_PATH && PIPENV_IGNORE_VIRTUALENVS=1 pipenv run python manage.py check --deploy --fail-level ${FAIL} ${ARGS} &> output.txt
EXIT_CODE=$? EXIT_CODE=$?
fi fi
if [[ "$ENV_TYPE" == "venv" ]]; then if [[ "$ENV_TYPE" == "venv" ]]; then

View file

@ -78,7 +78,6 @@ DEBUG = env_debug
# Installing them here makes them available for execution. # Installing them here makes them available for execution.
# Do not access INSTALLED_APPS directly. Use `django.apps.apps` instead. # Do not access INSTALLED_APPS directly. Use `django.apps.apps` instead.
INSTALLED_APPS = [ INSTALLED_APPS = [
"epplibwrapper",
# let's be sure to install our own application! # let's be sure to install our own application!
# it needs to be listed before django.contrib.admin # it needs to be listed before django.contrib.admin
# otherwise Django would find the default template # otherwise Django would find the default template