Skip to content

Commit

Permalink
un-commented code block
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnav committed Aug 26, 2019
1 parent 156c556 commit 2099756
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions conda/test_balsam.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@
print('{}: Importing any coverage from Balsam.'.format(sleeptime))
here = os.getcwd()

# Move coverage files from Balsam DB to ./regression_tests (for concatenation)
# covname = '.cov_reg_out.'
# for file in os.listdir(jobdir):
# if file.startswith(covname):
# balsam_cov = os.path.join(jobdir, file)
# here_cov = os.path.join(here, file)
# print('Moved {} from {} to {}'.format(file, jobdir, here))
# os.rename(balsam_cov, here_cov)
Move coverage files from Balsam DB to ./regression_tests (for concatenation)
covname = '.cov_reg_out.'
for file in os.listdir(jobdir):
if file.startswith(covname):
balsam_cov = os.path.join(jobdir, file)
here_cov = os.path.join(here, file)
print('Moved {} from {} to {}'.format(file, jobdir, here))
os.rename(balsam_cov, here_cov)

print('Test complete.')

0 comments on commit 2099756

Please sign in to comment.