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

Re-enable PPCWMAX related test #611

Merged
merged 1 commit into from
Feb 27, 2024
Merged
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
9 changes: 0 additions & 9 deletions tests/test_check_swatinit_simulators.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ def test_swat_higher_than_swatinit_via_swl_above_contact(simulator, tmp_path):
assert pd.isnull(qc_frame["PC"][0])


@pytest.mark.skip(
reason="flowdaily has supported PPCWMAX but not official release of flow",
)
def test_swat_limited_by_ppcwmax_above_contact(simulator, tmp_path):
"""Test PPCWMAX far above contact. This keyword is only supported by Eclipse100
and will be ignored by flow.
Expand Down Expand Up @@ -754,9 +751,6 @@ def test_pc_scaled_above_gwc(eclipse_simulator, tmp_path):
assert np.isclose(qc_frame["PC"][0], 9.396621)


@pytest.mark.skip(
reason="flowdaily has supported PPCWMAX but not official release of flow",
)
def test_ppcwmax_gridvector(simulator, tmp_path):
"""Test that ppcwmax_gridvector maps ppcwmax values correctly in the grid"""
os.chdir(tmp_path)
Expand All @@ -773,9 +767,6 @@ def test_ppcwmax_gridvector(simulator, tmp_path):
assert np.isclose(qc_frame[qc_frame["SATNUM"] == 2]["PPCWMAX"].unique(), 0.02)


@pytest.mark.skip(
reason="flowdaily has supported PPCWMAX but not official release of flow",
)
def test_ppcwmax_gridvector_eqlnum(flow_simulator, tmp_path):
"""Test that ppcwmax unrolling also works with EQLNUM (historical bug)"""
os.chdir(tmp_path)
Expand Down
Loading