Changeset 2744 for inundation/test_all.py
- Timestamp:
- Apr 21, 2006, 12:58:42 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/test_all.py
r2638 r2744 15 15 #List files that should be excluded from the testing process. 16 16 #E.g. if they are known to fail and under development 17 exclude_files = ['test_metis.py', 'test_version.py', 17 exclude_files = ['test_metis.py', 'test_version.py', 'test_parallel_sw.py' 18 18 #'test_interpolate.py',# this is under development 19 19 ] … … 23 23 exclude_dirs = ['pypar_dist', #Special requirements 24 24 'props', 'wcprops', 'prop-base', 'text-base', '.svn', #Svn 25 'tmp', 26 'pmesh'] #Name conflict on my home machine (Ole) 25 'tmp'] 27 26 27 28 print "The following directories will be skipped over;" 29 for dir in exclude_dirs: 30 print dir 31 print "" 28 32 29 33 def get_test_files(path): … … 38 42 #Check sub directories 39 43 test_files = [] 44 40 45 for file in files: 41 46 42 47 #Exclude svn admin dirs 43 if file in exclude_dirs: continue 48 if file in exclude_dirs: 49 continue 44 50 45 51 absolute_filename = path + os.sep + file
Note: See TracChangeset
for help on using the changeset viewer.