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

Unskip memray test #6137

Merged
merged 1 commit into from
Sep 22, 2023
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
3 changes: 2 additions & 1 deletion tests/unit_tests/storage/test_parameter_sample_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import pytest
import xtgeo
from ecl.util.geometry import Surface
from flaky import flaky

from ert.__main__ import ert_parser
from ert.cli import ENSEMBLE_SMOOTHER_MODE
Expand Down Expand Up @@ -788,7 +789,7 @@ def test_surface_param_update(tmpdir):

@pytest.mark.integration_test
@pytest.mark.limit_memory("110 MB")
@pytest.mark.skip
@flaky(max_runs=5, min_passes=1)
def test_field_param_memory(tmpdir):
with tmpdir.as_cwd():
# Setup is done in a subprocess so that memray does not pick up the allocations
Expand Down
Loading