Skip to content

Commit

Permalink
Make test fixture minimum_case really minimal
Browse files Browse the repository at this point in the history
  • Loading branch information
berland committed Oct 29, 2024
1 parent d329f1c commit e397968
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/ert/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,7 @@ def snake_oil_case(setup_case):

@pytest.fixture()
def minimum_case(use_tmpdir):
with open("minimum_config", "w", encoding="utf-8") as fout:
fout.write(
"NUM_REALIZATIONS 10\nQUEUE_OPTION LOCAL MAX_RUNNING 50\nMAX_RUNTIME 42"
)
Path("minimum_config").write_text("NUM_REALIZATIONS 1", encoding="utf-8")
return ErtConfig.from_file("minimum_config")


Expand Down

0 comments on commit e397968

Please sign in to comment.