Skip to content
Snippets Groups Projects
Commit caa4e48a authored by Maël Madon's avatar Maël Madon
Browse files

fix: test not passing

parent 074e00af
No related branches found
No related tags found
No related merge requests found
Pipeline #9395 passed
......@@ -26,8 +26,9 @@ def test_fcfs(platform_monoC, workload_static):
# Checks that the jobs have been executed in FCFS order
jobs = pd.read_csv(f"{output_dir}/_jobs.csv")
jobs = jobs[jobs.success==1]
jobs.sort_values(by="submission_time", inplace=True)
assert jobs[jobs.success==1].starting_time.is_monotonic_increasing
assert jobs.starting_time.is_monotonic_increasing
def test_easy_bf_small_instance():
"""Tests the scheduler easy backfilling on a small instance"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment