Fix tests

This commit is contained in:
Marek Wolan
2024-03-15 12:19:56 +00:00
parent 04c86e30c9
commit e0eef8e56e
3 changed files with 8 additions and 6 deletions

View File

@@ -11,12 +11,10 @@ training_config:
- defender
io_settings:
save_checkpoints: true
checkpoint_interval: 5
save_agent_actions: true
save_agent_actions: false
save_step_metadata: false
save_pcap_logs: false
save_sys_logs: true
save_sys_logs: false
game:

View File

@@ -11,8 +11,11 @@ training_config:
- defender
io_settings:
save_checkpoints: true
checkpoint_interval: 5
save_agent_actions: true
save_step_metadata: true
save_pcap_logs: true
save_sys_logs: true
game:

View File

@@ -31,6 +31,7 @@ class TestPrimaiteSession:
assert session.env.game.simulation.network
assert len(session.env.game.simulation.network.nodes) == 10
@pytest.mark.skip(reason="Session is not being maintained and will be removed in the subsequent beta release.")
@pytest.mark.parametrize("temp_primaite_session", [[CFG_PATH]], indirect=True)
def test_start_session(self, temp_primaite_session):
"""Make sure you can go all the way through the session without errors."""