We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fdecb2 commit 65e144bCopy full SHA for 65e144b
pvlib/tests/test_solarposition.py
@@ -5,7 +5,11 @@
5
import numpy as np
6
import pandas as pd
7
8
-from .conftest import assert_frame_equal, assert_series_equal
+from .conftest import (
9
+ assert_frame_equal,
10
+ assert_series_equal,
11
+ fail_on_pvlib_version,
12
+)
13
from numpy.testing import assert_allclose
14
import pytest
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):
725
"""Test geometric calculations for sunrise, sunset, and transit times"""
726
times = expected_rise_set_spa.index
0 commit comments