From abad764a49f107957ec5677bdf9f71602bcb652a Mon Sep 17 00:00:00 2001 From: Evgeny <940893+freekode@users.noreply.github.com> Date: Fri, 17 Jul 2026 12:17:12 +0200 Subject: [PATCH 1/2] Skip air pollution test Skip the test for air pollution due to potential network issues. --- tests/test_all.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_all.py b/tests/test_all.py index a5d9f5f..db69a73 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -43,6 +43,7 @@ async def test_free_forecast_weather(): @pytest.mark.network @pytest.mark.asyncio +@pytest.mark.skip async def test_air_pollution(): api_key = os.getenv('OWM_API_KEY') client = create_owm_client(api_key, 'air_pollution') From 1ed696701efc0f0a0c055c00efa63f93c766a3e1 Mon Sep 17 00:00:00 2001 From: Evgeny <940893+freekode@users.noreply.github.com> Date: Fri, 17 Jul 2026 12:19:59 +0200 Subject: [PATCH 2/2] Skip test_free_forecast_weather for now --- tests/test_all.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_all.py b/tests/test_all.py index db69a73..7bca073 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -33,6 +33,7 @@ async def test_free_current_weather(): @pytest.mark.network @pytest.mark.asyncio +@pytest.mark.skip async def test_free_forecast_weather(): api_key = os.getenv('OWM_API_KEY') client = create_owm_client(api_key, 'forecast')