Skip to content

Commit

Permalink
Merge marker used for simulation fw models in Everest and Ert (#8978)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanDeHoop authored Oct 17, 2024
1 parent 74e401e commit 6e1fa35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/testkomodo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ run_ert_with_opm () {
run_everest_tests () {
python -m pytest tests/everest -s \
--ignore-glob "*test_visualization_entry*" \
-m "not simulation_test and not ui_test"
-m "not requires_eclipse and not ui_test"
xvfb-run -s "-screen 0 640x480x24" --auto-servernum python -m pytest tests/everest -s -m "ui_test"
}

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ markers = [
"slow",
"everest_models_test",
"integration_test",
"simulation_test",
"ui_test",
"fails_on_macos_github_workflow", # Tests marked fail due to gui-related issues
]
Expand Down
4 changes: 2 additions & 2 deletions tests/everest/test_egg_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ def test_init_egg_model(copy_egg_test_data_to_tmp):
@skipif_no_everest_models
@pytest.mark.everest_models_test
@skipif_no_simulator
@pytest.mark.simulation_test
@pytest.mark.requires_eclipse
def test_run_egg_model(copy_egg_test_data_to_tmp):
config = EverestConfig.load_file(CONFIG_FILE)

Expand Down Expand Up @@ -802,7 +802,7 @@ def test_egg_model_wells_json_output_no_none(copy_egg_test_data_to_tmp):
@skipif_no_everest_models
@pytest.mark.everest_models_test
@skipif_no_simulator
@pytest.mark.simulation_test
@pytest.mark.requires_eclipse
@pytest.mark.timeout(0)
def test_egg_snapshot(snapshot, copy_egg_test_data_to_tmp):
# shutil.copytree(relpath(ROOT), tmp_path, dirs_exist_ok=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/everest/test_res_initialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def test_summary_default_no_opm(copy_egg_test_data_to_tmp):
assert set(sum_keys[0]) == set(res_conf["SUMMARY"][0])


@pytest.mark.simulation_test
@pytest.mark.requires_eclipse
def test_install_data(copy_test_data_to_tmp):
"""
TODO: When default jobs are handled in Everest this test should not
Expand Down

0 comments on commit 6e1fa35

Please sign in to comment.