From 0002b22f5cfe2d0d4e7158ed53493a73a72d8b50 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Wed, 1 May 2024 16:57:46 +0200 Subject: [PATCH] chore: skip failing test for now This test was relying on changing DEFAULT_FROM_EMAIL in the test, but given this setting is used at load from urls.py, it has no effect. --- umap/tests/integration/test_anonymous_owned_map.py | 1 + 1 file changed, 1 insertion(+) diff --git a/umap/tests/integration/test_anonymous_owned_map.py b/umap/tests/integration/test_anonymous_owned_map.py index 0a92e523..5e266b8d 100644 --- a/umap/tests/integration/test_anonymous_owned_map.py +++ b/umap/tests/integration/test_anonymous_owned_map.py @@ -205,6 +205,7 @@ def test_email_sending_error_are_catched(tilelayer, page, live_server): expect(alert.get_by_text("Can't send email to foo@bar.com")).to_be_visible() +@pytest.mark.skip(reason="Changing DEFAULT_FROM_EMAIL at runtime has no effect") def test_alert_message_after_create_show_link_even_without_mail( tilelayer, live_server, page, monkeypatch, settings ):