Changeset fc117d0 for python/run_all_tests
- Timestamp:
- Feb 11, 2013, 11:06:28 AM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 050a8f3
- Parents:
- 5314432 (diff), 88fc249 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
python/run_all_tests
r5314432 rfc117d0 1 #! /usr/bin/ python1 #! /usr/bin/env python 2 2 3 3 if __name__ == '__main__': … … 7 7 curdir = os.path.dirname(sys.argv[0]) 8 8 if curdir == '': curdir = '.' 9 files = os.listdir( curdir)9 files = os.listdir(os.path.join(curdir, 'tests')) 10 10 modfiles = filter (lambda y: y.endswith('.py'), files) 11 11 modfiles = filter (lambda f: f.startswith('test_'), modfiles)
Note: See TracChangeset
for help on using the changeset viewer.