8000 Deprecate pvlib.forecast by kandersolar · Pull Request #1426 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Deprecate pvlib.forecast #1426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Mar 17, 2022
Prev Previous commit
Next Next commit
more warning suppression in tests
  • Loading branch information
kandersolar committed Mar 14, 2022
commit 62b3df72ce059be336cb176e2da74ccc3e637fdd
3 changes: 2 additions & 1 deletion pvlib/tests/test_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
@requires_siphon
@pytest.fixture(scope='module', params=_modelclasses)
def model(request):
amodel = request.param()
with pytest.warns(pvlibDeprecationWarning):
amodel = request.param()
try:
raw_data = amodel.get_data(_latitude, _longitude, _start, _end)
except Exception as e:
Expand Down
0