diff --git a/Makefile b/Makefile index 8684a22e2..1e6eeefb9 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ watch-frontend: ## Build frontend and watch for changes .PHONY: run-flask run-flask: ## Run flask - poetry run newrelic-admin run-program gunicorn -c gunicorn_config.py gunicorn_entry:application -b 0.0.0.0:6012 + poetry run newrelic-admin run-program flask run -p 6012 --host=0.0.0.0 .PHONY: run-flask-bare run-flask-bare: ## Run flask without invoking poetry so we can override ENV variables in .env diff --git a/tests/end_to_end/conftest.py b/tests/end_to_end/conftest.py index ed8c28858..eb90086ce 100644 --- a/tests/end_to_end/conftest.py +++ b/tests/end_to_end/conftest.py @@ -48,7 +48,6 @@ def check_axe_report(page): assert violation["impact"] in [ "minor", "moderate", - "serious", # TODO!!! REMOVE THIS ], f"Accessibility violation: {violation}"