From 10a4db50672ca8ca644005cbb0681f6b5203680e Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Mon, 2 Aug 2021 19:08:06 +0200 Subject: [PATCH] ci: remove xfail from tests that were fixed --- .../test_deleted_cert/test_restart_while_missing_cert.py | 2 -- .../test_unreachable_network/test_unreachable_net.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/test/stress_tests/test_deleted_cert/test_restart_while_missing_cert.py b/test/stress_tests/test_deleted_cert/test_restart_while_missing_cert.py index 0ec36c7..0c5565b 100644 --- a/test/stress_tests/test_deleted_cert/test_restart_while_missing_cert.py +++ b/test/stress_tests/test_deleted_cert/test_restart_while_missing_cert.py @@ -9,8 +9,6 @@ from requests import ConnectionError script_dir = os.path.dirname(__file__) -pytestmark = pytest.mark.xfail() # TODO delete this marker once those issues are fixed - @pytest.fixture(scope="module", autouse=True) def certs(): diff --git a/test/stress_tests/test_unreachable_network/test_unreachable_net.py b/test/stress_tests/test_unreachable_network/test_unreachable_net.py index dbcfb14..4c09da2 100644 --- a/test/stress_tests/test_unreachable_network/test_unreachable_net.py +++ b/test/stress_tests/test_unreachable_network/test_unreachable_net.py @@ -3,8 +3,6 @@ from time import sleep import pytest import requests -pytestmark = pytest.mark.xfail() # TODO delete this marker once #585 is merged - def test_default_nginx_welcome_page_should_not_be_served(docker_compose, nginxproxy): r = nginxproxy.get("http://whatever.nginx-proxy/", allow_redirects=False)