diff --git a/.github/actions/django-security-check/entrypoint.sh b/.github/actions/django-security-check/entrypoint.sh index 69f8246d7..8e2ca26ab 100755 --- a/.github/actions/django-security-check/entrypoint.sh +++ b/.github/actions/django-security-check/entrypoint.sh @@ -14,7 +14,7 @@ if [[ "$ENV_TYPE" == "pipenv" ]]; then cd $REQS pip3 install pipenv 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=$? fi if [[ "$ENV_TYPE" == "venv" ]]; then diff --git a/src/registrar/config/settings.py b/src/registrar/config/settings.py index 6c7f32de6..fd3893617 100644 --- a/src/registrar/config/settings.py +++ b/src/registrar/config/settings.py @@ -78,7 +78,6 @@ DEBUG = env_debug # Installing them here makes them available for execution. # Do not access INSTALLED_APPS directly. Use `django.apps.apps` instead. INSTALLED_APPS = [ - "epplibwrapper", # let's be sure to install our own application! # it needs to be listed before django.contrib.admin # otherwise Django would find the default template