Skip to content

Commit 4ae9c48

Browse files
committed
initial test updates
1 parent 745eb0f commit 4ae9c48

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pvlib/tests/test_solarposition.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -478,12 +478,11 @@ def test_get_solarposition_altitude(
478478

479479
@pytest.mark.parametrize("delta_t, method", [
480480
(None, 'nrel_numpy'),
481-
pytest.param(
482-
None, 'nrel_numba',
483-
marks=[pytest.mark.xfail(
484-
reason='spa.calculate_deltat not implemented for numba yet')]),
481+
(None, 'nrel_numba'),
485482
(67.0, 'nrel_numba'),
486483
(67.0, 'nrel_numpy'),
484+
(np.array([67.0, 67.0]), 'nrel_numpy'),
485+
(np.array([67.0, 67.0]), 'nrel_numba'),
487486
])
488487
def test_get_solarposition_deltat(delta_t, method, expected_solpos_multi,
489488
golden):

0 commit comments

Comments
 (0)