diff --git a/tests/test_all.py b/tests/test_all.py index a5d9f5f..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') @@ -43,6 +44,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')