Changeset 434 for inundation/ga/storm_surge/pyvolution/test_all.py
- Timestamp:
- Oct 21, 2004, 12:40:20 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/test_all.py
r336 r434 12 12 import os 13 13 14 15 #List files that should be excluded from the testing process. 16 #E.g. if they are known to fail and under development 17 exclude = ['test_least_squares.py', 'test_cg_solve.py', 18 'test_interpolate_sww.py'] 19 20 14 21 def regressionTest(): 15 22 import sys, os, re, unittest … … 23 30 except: 24 31 files.remove('test_all.py') 32 33 34 for file in exclude: 35 files.remove(file) 36 print 'WARNING: File '+ file + ' excluded from testing' 37 25 38 26 39 filenameToModuleName = lambda f: os.path.splitext(f)[0]
Note: See TracChangeset
for help on using the changeset viewer.