Skip to content
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

Reactivate now-working tests #6671

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions tests/unit_tests/test_libres_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ def test_case_history_data_missing_key(facade):
assert isinstance(data, PandasObject)


@pytest.mark.skip(reason="Needs reimplementation")
def test_summary_data_verify_indices_and_values(
caplog, snake_oil_case_storage, snake_oil_default_storage, snapshot
):
Expand Down Expand Up @@ -253,7 +252,6 @@ def test_gen_kw_priors(facade):
} in priors["SNAKE_OIL_PARAM"]


@pytest.mark.skip(reason="Needs reimplementation")
def test_summary_collector(
monkeypatch, snake_oil_case_storage, snake_oil_default_storage, snapshot
):
Expand Down Expand Up @@ -295,7 +293,6 @@ def test_summary_collector(
)


@pytest.mark.skip(reason="Needs reimplementation")
def test_misfit_collector(snake_oil_case_storage, snake_oil_default_storage, snapshot):
facade = LibresFacade(snake_oil_case_storage)
data = facade.load_all_misfit_data(snake_oil_default_storage)
Expand All @@ -306,7 +303,6 @@ def test_misfit_collector(snake_oil_case_storage, snake_oil_default_storage, sna
_ = data.loc[60]


@pytest.mark.skip(reason="Needs reimplementation")
def test_gen_kw_collector(snake_oil_case_storage, snake_oil_default_storage, snapshot):
facade = LibresFacade(snake_oil_case_storage)
data = facade.load_all_gen_kw_data(snake_oil_default_storage)
Expand Down Expand Up @@ -394,7 +390,6 @@ def test_gen_data_report_steps():
assert obs_key == []


@pytest.mark.skip(reason="Needs reimplementation")
def test_gen_data_collector(
snake_oil_case_storage, snapshot, snake_oil_default_storage
):
Expand Down
2 changes: 0 additions & 2 deletions tests/unit_tests/test_load_forward_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def run_simulator(time_step_count, start_date) -> Summary:
return summary


@pytest.mark.skip(reason="Needs reimplementation")
@pytest.mark.usefixtures("copy_snake_oil_case_storage")
def test_load_inconsistent_time_map_summary(caplog):
"""
Expand Down Expand Up @@ -111,7 +110,6 @@ def test_load_inconsistent_time_map_summary(caplog):
assert loaded == 1


@pytest.mark.skip(reason="Needs reimplementation")
@pytest.mark.usefixtures("copy_snake_oil_case_storage")
def test_load_forward_model(snake_oil_default_storage):
"""
Expand Down
1 change: 0 additions & 1 deletion tests/unit_tests/test_substitution_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from ert.substitution_list import SubstitutionList


@pytest.mark.xfail(reason="Needs reimplementation")
def test_substitution_list():
subst_list = SubstitutionList()

Expand Down
Loading