Changeset 3573


Ignore:
Timestamp:
Sep 12, 2006, 6:36:53 PM (18 years ago)
Author:
ole
Message:

Allowed different exclusions based on platform.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/test_all.py

    r3571 r3573  
    1616#List files that should be excluded from the testing process.
    1717#E.g. if they are known to fail and under development
    18 exclude_files = [#'test_version.py', #'test_least_squares.py',
    19                  'test_advection.py', # removing this test for a bit
    20                  ]
    21                  #'test_calculate_region.py', 'test_calculate_point.py']
    22                  #'test_init.py']
     18
     19exclude_files = []
     20if sys.platform != 'win32':  #Windows
     21    exclude_files.append('test_advection.py') #Weave doesn't work on Linux
    2322
    2423exclude_dirs = ['pypar_dist', #Special requirements
Note: See TracChangeset for help on using the changeset viewer.