Skip to content

Commit

Permalink
Remove unused progress fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Sep 3, 2024
1 parent 6cac4c0 commit a96c6f2
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/integration_tests/status/test_tracking_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def check_expression(original, path_expression, expected, msg_start):
@pytest.mark.parametrize(
(
"extra_config, extra_poly_eval, cmd_line_arguments,"
"num_successful,num_iters,progress,assert_present_in_snapshot"
"num_successful,num_iters,assert_present_in_snapshot"
),
[
pytest.param(
Expand All @@ -82,7 +82,6 @@ def check_expression(original, path_expression, expected, msg_start):
],
0,
1,
1.0,
[
(".*", "reals.*.forward_models.*.status", FORWARD_MODEL_STATE_FAILURE),
(
Expand All @@ -104,7 +103,6 @@ def check_expression(original, path_expression, expected, msg_start):
],
2,
1,
1.0,
[(".*", "reals.*.forward_models.*.status", FORWARD_MODEL_STATE_FINISHED)],
id="ee_poly_experiment",
),
Expand All @@ -119,7 +117,6 @@ def check_expression(original, path_expression, expected, msg_start):
],
2,
2,
1.0,
[(".*", "reals.*.forward_models.*.status", FORWARD_MODEL_STATE_FINISHED)],
id="ee_poly_smoother",
),
Expand All @@ -135,7 +132,6 @@ def check_expression(original, path_expression, expected, msg_start):
1,
1,
# Fails halfway, due to unable to run update
0.5,
[
(
"0",
Expand All @@ -159,7 +155,6 @@ def test_tracking(
cmd_line_arguments,
num_successful,
num_iters,
progress,
assert_present_in_snapshot,
storage,
):
Expand Down

0 comments on commit a96c6f2

Please sign in to comment.