Changeset 4795
- Timestamp:
- Nov 5, 2007, 5:43:35 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/test_all.py
r4794 r4795 85 85 for file in exclude_files: 86 86 print 'WARNING: File '+ file + ' to be excluded from testing' 87 try:88 files.remove(file)89 except ValueError, e:90 msg = 'File "%s" was not found in test suite.\n' %file91 msg += 'Original error is "%s"\n' %e92 msg += 'Perhaps it should be removed from exclude list?'93 raise Exception, msg87 try: 88 files.remove(file) 89 except ValueError, e: 90 msg = 'File "%s" was not found in test suite.\n' %file 91 msg += 'Original error is "%s"\n' %e 92 msg += 'Perhaps it should be removed from exclude list?' 93 raise Exception, msg 94 94 95 95 filenameToModuleName = lambda f: os.path.splitext(f)[0]
Note: See TracChangeset
for help on using the changeset viewer.