Skip to content

Commit

Permalink
added fix to ignore ruby warnings for PW
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardSnyder-NOAA committed Jun 7, 2024
1 parent 1be1a58 commit bd481a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/WE2E/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ def compare_rocotostat(expt_dict,name):
continue
line_array = line.split()
# Skip header lines
if line_array[0] == 'CYCLE':
if line_array[0] == 'CYCLE' or line_array[0] == '/apps/rocoto/1.3.3/lib/workflowmgr/launchserver.rb:40:':
continue
# We should now just have lines describing jobs, in the form:
# line_array = ['cycle','task','jobid','status','exit status','num tries','walltime']
Expand Down

0 comments on commit bd481a4

Please sign in to comment.