Commit b5b543e1 authored by Maiterth, Matthias's avatar Maiterth, Matthias
Browse files

Added long marker to the network test for lassen even without data! It has...

Added long marker to the network test for lassen even without data! It has been running over an hour now.
parent 8dbd8ecd
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -11,7 +11,10 @@ pytestmark = [
]


def test_main_network_run(system, system_config, sim_output):
def test_main_network_run(system, system_config, sim_output, pytestconfig):
    if system == "lassen" and not pytestconfig.getoption("--runlong"):
        pytest.skip("This test for \"lassen\" is very long; pass --runlong to run it")

    if not system_config.get("main", False):
        pytest.skip(f"{system} does not support basic main run.")