diff --git a/src/ert/storage/local_storage.py b/src/ert/storage/local_storage.py index 59a19424162..c271a0ac15b 100644 --- a/src/ert/storage/local_storage.py +++ b/src/ert/storage/local_storage.py @@ -46,7 +46,7 @@ logger = logging.getLogger(__name__) -_LOCAL_STORAGE_VERSION = 8 +_LOCAL_STORAGE_VERSION = 9 class _Migrations(BaseModel): diff --git a/tests/ert/unit_tests/storage/test_storage_migration.py b/tests/ert/unit_tests/storage/test_storage_migration.py index 90fc9b3d86b..6a84659acd4 100644 --- a/tests/ert/unit_tests/storage/test_storage_migration.py +++ b/tests/ert/unit_tests/storage/test_storage_migration.py @@ -38,6 +38,8 @@ def copy_shared(tmp_path, block_storage_path): @pytest.mark.parametrize( "ert_version", [ + "11.1.8", + "11.0.8", "10.3.1", "10.2.8", "10.1.3", @@ -214,6 +216,8 @@ def test_that_storage_matches( @pytest.mark.parametrize( "ert_version", [ + "11.1.8", + "11.0.8", "10.3.1", "10.2.8", "10.1.3",