From 4c258bb39b261cece71c757a645e058e04e4b1e5 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 30 Jul 2025 11:25:36 -0700 Subject: [PATCH] ugh --- Makefile | 2 +- tests/end_to_end/conftest.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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}"