File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 5
5
import numpy as np
6
6
import pandas as pd
7
7
8
- from .conftest import assert_frame_equal , assert_series_equal
8
+ from .conftest import (
9
+ assert_frame_equal ,
10
+ assert_series_equal ,
11
+ fail_on_pvlib_version ,
12
+ )
9
13
from numpy .testing import assert_allclose
10
14
import pytest
11
15
@@ -711,6 +715,12 @@ def test_hour_angle():
711
715
solarposition ._local_times_from_hours_since_midnight (times , hours )
712
716
713
717
718
+ @fail_on_pvlib_version ('0.12' )
719
+ def test_hour_angle_renamed_kwarg_warning ():
720
+ # test to remember to remove renamed_kwarg_warning
721
+ pass
722
+
723
+
714
724
def test_sun_rise_set_transit_geometric (expected_rise_set_spa , golden_mst ):
715
725
"""Test geometric calculations for sunrise, sunset, and transit times"""
716
726
times = expected_rise_set_spa .index
You can’t perform that action at this time.
0 commit comments