~madteam/mg5amcnlo/series2.0

« back to all changes in this revision

Viewing changes to tests/IOTests.py

merge with 2.0.0beta4 revision 216

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    what kind of IO test will be necessary later """
49
49
 
50
50
    # Handy definitions
51
 
    proc_files = ['[.+\.(f|dat|inc)]']
 
51
    proc_files = ['[^.+\.(f|dat|inc)$]']
52
52
    # Some model files are veto because they are sourced by dictionaries whose 
53
53
    # order is random.
54
 
    model_files = ['../../Source/MODEL/[.+\.(f|inc)]',
 
54
    model_files = ['../../Source/MODEL/[^.+\.(f|inc)$]',
55
55
                   '-../../Source/MODEL/lha_read.f',
56
56
                   '-../../Source/MODEL/param_read.inc',
57
57
                   '-../../Source/MODEL/param_write.inc']            
58
 
    helas_files = ['../../Source/DHELAS/[.+\.(f|inc)]']
 
58
    helas_files = ['../../Source/DHELAS/[^.+\.(f|inc)$]']
59
59
    
60
60
    # We also exclude the helas_files because they are sourced from unordered
61
61
    # dictionaries.