Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
batmen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sepia-pub
mael
batmen
Commits
caa4e48a
Commit
caa4e48a
authored
1 year ago
by
Maël Madon
Browse files
Options
Downloads
Patches
Plain Diff
fix: test not passing
parent
074e00af
No related branches found
No related tags found
No related merge requests found
Pipeline
#9395
passed
1 year ago
Stage: build-and-test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_schedulers_mono.py
+2
-1
2 additions, 1 deletion
test/test_schedulers_mono.py
with
2 additions
and
1 deletion
test/test_schedulers_mono.py
+
2
−
1
View file @
caa4e48a
...
...
@@ -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
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment