Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
Skip-unit-tests: true
Skip-fault-injection-test: true
Test-tag: soak_smoke

Required-githooks: true

Signed-off-by: Maureen Jean <maureen.jean@intel.com>
  • Loading branch information
mjean308 committed Aug 1, 2024
1 parent 063424b commit 04665e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/tests/ftest/util/soak_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,13 +421,13 @@ def job_setup(self, jobs, pool):
for jobscript in jobscripts:
jobtimeout = self.params.get("job_timeout", "/run/" + job + "/*", 10)
self.joblist.extend([{"jobscript": jobscript[0],
"nodesperjob": npj,
"taskspernode": ppn,
"hostlist": None,
"jobid": None,
"jobtimeout": jobtimeout,
"joblog": jobscript[1],
"joberrlog": jobscript[2]}])
"nodesperjob": npj,
"taskspernode": ppn,
"hostlist": None,
"jobid": None,
"jobtimeout": jobtimeout,
"joblog": jobscript[1],
"joberrlog": jobscript[2]}])
# randomize job list
random.seed(4)
random.shuffle(self.joblist)
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ftest/util/soak_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def launch_jobscript(
job_id (int): unique job identifier
host_list (list): list of node to pass to job script
env (str): environment variables for job script
script (str): full path to jobscript
script (str): full path to job script
job_log (str): job std out
error_log (str): job std error
timeout (int): job timeout
Expand Down

0 comments on commit 04665e7

Please sign in to comment.