Changeset 2744


Ignore:
Timestamp:
Apr 21, 2006, 12:58:42 PM (18 years ago)
Author:
duncan
Message:

test_parallel_sw.py removed since its breaking test_all.py. pmesh put back in.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/test_all.py

    r2638 r2744  
    1515#List files that should be excluded from the testing process.
    1616#E.g. if they are known to fail and under development
    17 exclude_files = ['test_metis.py', 'test_version.py',
     17exclude_files = ['test_metis.py', 'test_version.py', 'test_parallel_sw.py'
    1818                 #'test_interpolate.py',# this is under development
    1919                 ]
     
    2323exclude_dirs = ['pypar_dist', #Special requirements
    2424                'props', 'wcprops', 'prop-base', 'text-base', '.svn', #Svn
    25                 'tmp',
    26                 'pmesh']     #Name conflict on my home machine (Ole)
     25                'tmp']
    2726
     27
     28print "The following directories will be skipped over;"
     29for dir in exclude_dirs:
     30    print dir
     31print ""
    2832
    2933def get_test_files(path):
     
    3842    #Check sub directories
    3943    test_files = []
     44
    4045    for file in files:
    4146
    4247        #Exclude svn admin dirs
    43         if file in exclude_dirs: continue
     48        if file in exclude_dirs:
     49            continue
    4450
    4551        absolute_filename = path + os.sep + file
Note: See TracChangeset for help on using the changeset viewer.