diff --git a/tests/intergration/test_app.py b/tests/intergration/test_app.py index 3646387..dd099bf 100644 --- a/tests/intergration/test_app.py +++ b/tests/intergration/test_app.py @@ -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") @@ -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( diff --git a/tests/intergration/test_pv_systems_integration.py b/tests/intergration/test_pv_systems_integration.py index 6d7c188..77eb8be 100644 --- a/tests/intergration/test_pv_systems_integration.py +++ b/tests/intergration/test_pv_systems_integration.py @@ -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")