Line | |
---|
1 | """Validate_all.py |
---|
2 | """ |
---|
3 | |
---|
4 | import os |
---|
5 | |
---|
6 | |
---|
7 | dirs_to_skip = ['.', 'okushiri_tank_validation_ver1'] |
---|
8 | validation_dirs_and_files = [] |
---|
9 | |
---|
10 | |
---|
11 | for dirpath, dirnames, filenames in os.walk('.'): |
---|
12 | |
---|
13 | if '.svn' in dirnames: |
---|
14 | dirnames.remove('.svn') # don't visit SVN directories |
---|
15 | |
---|
16 | dir = os.path.split(dirpath)[-1] |
---|
17 | if dir in dirs_to_skip: |
---|
18 | print 'Skipping %s' %dirpath |
---|
19 | continue |
---|
20 | |
---|
21 | print 'Searching dir', dirpath |
---|
22 | |
---|
23 | |
---|
24 | for filename in filenames: |
---|
25 | if filename.startswith('validate') and filename.endswith('.py'): |
---|
26 | print 'Found %s in %s' %(filename, dirpath) |
---|
27 | validation_dirs_and_files.append((dirpath, filename)) |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | for path, filename in validation_dirs_and_files: |
---|
32 | s = 'cd %s; python %s' %(path, filename) |
---|
33 | print s |
---|
34 | os.system(s) |
---|
35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.