From 4ae39b1c6e622f63ec0af7fb83871c1551c7d9ef Mon Sep 17 00:00:00 2001 From: Nikolay Petrov Date: Wed, 2 Sep 2026 10:09:43 +1000 Subject: [PATCH 1/2] Add premium forecast integration tests --- tests/test_forecast.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tests/test_forecast.py b/tests/test_forecast.py index aef1625..e676023 100644 --- a/tests/test_forecast.py +++ b/tests/test_forecast.py @@ -42,6 +42,22 @@ def test_advanced_pv_power(): assert res.success is True +def test_premium_pv_power(): + res = forecast.premium_pv_power( + resource_id="cbf6-a872-1cb2-566f", + hours=3, + ) + assert res.success is True + + +def test_premium_wind_power(): + res = forecast.premium_wind_power( + resource_id="c533-fbce-05b5-b3ef", + hours=3, + ) + assert res.success is True + + def test_soiling_kimber(): lats, longs = load_test_locations_coordinates() res = forecast.soiling_kimber( From 2dd4d5f029262febd2804317543087e871064cd0 Mon Sep 17 00:00:00 2001 From: Nikolay Petrov Date: Wed, 2 Sep 2026 11:27:40 +1000 Subject: [PATCH 2/2] Bump package version to 1.5.0 --- solcast/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solcast/__init__.py b/solcast/__init__.py index 4725aa3..a4f208e 100644 --- a/solcast/__init__.py +++ b/solcast/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.4.0" +__version__ = "1.5.0" from . import ( aggregations,