Skip to content
Snippets Groups Projects
Commit c7674ce3 authored by Paul van der Laan's avatar Paul van der Laan
Browse files

Removed print statements

parent c7412771
No related branches found
No related tags found
1 merge request!6EllipSys1D
Pipeline #
......@@ -186,7 +186,6 @@ class CaseRunner(object):
status = subprocess.call(command, shell=True,stdout=FNULL)
self.read_data(self.project, outname)
self.jobid = None
print 'test1'
print 'case %s ran in %f seconds' %(self.casename, time.time() - t0)
elif self.exec_mode == 'shell':
t0 = time.time()
......@@ -203,7 +202,6 @@ class CaseRunner(object):
raise RuntimeError('Case %s failed!' % self.casename)
self.read_data(self.project, outname)
self.jobid = None
print 'test2'
print 'case %s ran in %f seconds' %(self.casename, time.time() - t0)
elif self.exec_mode == 'dry_run':
print 'Running in dry run mode, copying pre-computed data!'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment