From 50f54cfac55829d4dc9dc1451cfb39add5b4e4bc Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Thu, 11 May 2023 18:34:34 -0400 Subject: [PATCH] test: Skip all httpbin.org tests entirely --- tests/dataset/misc/test_url_availability.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/dataset/misc/test_url_availability.py b/tests/dataset/misc/test_url_availability.py index 0dd47a9..7286492 100644 --- a/tests/dataset/misc/test_url_availability.py +++ b/tests/dataset/misc/test_url_availability.py @@ -1,4 +1,3 @@ -import os from unittest.mock import patch import pytest @@ -38,7 +37,7 @@ def test_undefined(): } -@pytest.mark.skipif("CI" not in os.environ, reason="skipping slow test in development") +@pytest.mark.skip(reason="skipping slow and inconsistent test") def test_passed(): scope = {} scope = url_availability.add_item(scope, item_test_passed, 0)