diff --git a/Makefile b/Makefile index 47eed18b7..31025a9c0 100644 --- a/Makefile +++ b/Makefile @@ -8,13 +8,13 @@ test-full: test-integration: k3d cluster create || exit 0 k3d kubeconfig write -o ~/.kube/config --overwrite - coverage run manage.py test --failfast -v 3 tests/integration + coverage run manage.py test -v 3 tests/integration test-e2e: - coverage run manage.py test --failfast -v 3 tests/e2e + coverage run manage.py test -v 3 tests/e2e coverage: - coverage run manage.py test --failfast -v 3 authentik + coverage run manage.py test -v 3 authentik coverage html coverage report diff --git a/authentik/root/urls.py b/authentik/root/urls.py index 6e82e195f..5b9d77ddb 100644 --- a/authentik/root/urls.py +++ b/authentik/root/urls.py @@ -58,7 +58,6 @@ urlpatterns += [ path("administration/django/", admin.site.urls), path("metrics/", MetricsView.as_view(), name="metrics"), path("-/health/live/", LiveView.as_view(), name="health-live"), - path("ws/client/", LiveView.as_view(), name="ws-client-fallback"), path("-/health/ready/", ReadyView.as_view(), name="health-ready"), path("-/jsi18n/", JavaScriptCatalog.as_view(), name="javascript-catalog"), ]