This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 5ad20cfacdc Disable test because of flakyness (#45820)
5ad20cfacdc is described below
commit 5ad20cfacdcb1b001011ebf711d001cabf20542c
Author: Vincent <[email protected]>
AuthorDate: Mon Jan 20 17:43:56 2025 -0500
Disable test because of flakyness (#45820)
---
airflow/auth/managers/simple/views/auth.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/airflow/auth/managers/simple/views/auth.py
b/airflow/auth/managers/simple/views/auth.py
index 5dadea5d659..b292fc05541 100644
--- a/airflow/auth/managers/simple/views/auth.py
+++ b/airflow/auth/managers/simple/views/auth.py
@@ -18,6 +18,7 @@ from __future__ import annotations
from urllib.parse import parse_qsl, urlencode, urlsplit, urlunsplit
+import pytest
from flask import redirect, request, session, url_for
from flask_appbuilder import expose
@@ -64,6 +65,9 @@ class SimpleAuthManagerAuthenticationViews(AirflowBaseView):
session.clear()
return redirect(url_for("SimpleAuthManagerAuthenticationViews.login"))
+ @pytest.mark.skip(
+ "This test will be deleted soon, meanwhile disabling it because it is
flaky. See: https://github.com/apache/airflow/issues/45818"
+ )
@csrf.exempt
@expose("/login_submit", methods=("GET", "POST"))
def login_submit(self):