Skip to content
Snippets Groups Projects
Commit 8e7d6bc9 authored by u229589's avatar u229589
Browse files

fix tests for malfunctions since sparse env has changed

parent cac4559a
No related branches found
Tags submission-v7.8
No related merge requests found
......@@ -145,7 +145,7 @@ def test_malfunction_process_statistically():
env.step(action_dict)
# check that generation of malfunctions works as expected
assert nb_malfunction == 156, "nb_malfunction={}".format(nb_malfunction)
assert nb_malfunction == 128, "nb_malfunction={}".format(nb_malfunction)
def test_initial_malfunction():
......@@ -203,14 +203,14 @@ def test_initial_malfunction():
# malfunctioning ends: starting and running at speed 1.0
),
Replay(
position=(28, 4),
direction=Grid4TransitionsEnum.WEST,
position=(28, 6),
direction=Grid4TransitionsEnum.EAST,
action=RailEnvActions.MOVE_FORWARD,
malfunction=0,
reward=env.step_penalty * 1.0 # running at speed 1.0
),
Replay(
position=(27, 4),
position=(27, 6),
direction=Grid4TransitionsEnum.NORTH,
action=RailEnvActions.MOVE_FORWARD,
malfunction=0,
......@@ -294,8 +294,8 @@ def test_initial_malfunction_stop_moving():
reward=env.start_penalty + env.step_penalty * 1.0 # full step penalty while stopped
),
Replay(
position=(28, 4),
direction=Grid4TransitionsEnum.WEST,
position=(28, 6),
direction=Grid4TransitionsEnum.EAST,
action=RailEnvActions.MOVE_FORWARD,
malfunction=0,
reward=env.step_penalty * 1.0 # full step penalty while stopped
......@@ -378,8 +378,8 @@ def test_initial_malfunction_do_nothing():
reward=env.start_penalty + env.step_penalty * 1.0 # start penalty + step penalty for speed 1.0
),
Replay(
position=(28, 4),
direction=Grid4TransitionsEnum.WEST,
position=(28, 6),
direction=Grid4TransitionsEnum.EAST,
action=RailEnvActions.MOVE_FORWARD,
malfunction=0,
reward=env.step_penalty * 1.0 # step penalty for speed 1.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment