Skip to content

Commit

Permalink
mark.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Sep 24, 2024
1 parent 4cea7dd commit 808c8ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/intergration/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pvconsumer.app import app, pull_data_and_save


@pytest.skip("This test uses pvoutput.org which we not longer use")
@pytest.mark.skip("This test uses pvoutput.org which we not longer use")
def test_pull_data(db_session, sites):
pull_data_and_save(pv_systems=sites, session=db_session, provider="pvoutput.org")

Expand All @@ -20,7 +20,7 @@ def test_pull_data_solar_sheffield(db_session, sites):
assert len(pv_yields) > 0


@pytest.skip("This test uses pvoutput.org which we not longer use")
@pytest.mark.skip("This test uses pvoutput.org which we not longer use")
def test_app(db_connection, filename, sites):
runner = CliRunner()
response = runner.invoke(
Expand Down
2 changes: 1 addition & 1 deletion tests/intergration/test_pv_systems_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pvconsumer.pv_systems import get_pv_systems


@pytest.skip("This test uses pvoutput.org which we not longer use")
@pytest.mark.skip("This test uses pvoutput.org which we not longer use")
def test_get_pv_systems(db_session, filename):
pv_systems = get_pv_systems(session=db_session, filename=filename, provider="pvoutput.org")

Expand Down

0 comments on commit 808c8ce

Please sign in to comment.