Changeset 4842
- Timestamp:
- Nov 21, 2007, 11:38:12 AM (17 years ago)
- Location:
- anuga_validation/automated_validation_tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/UQ_runup_2006/validate_uq_runup.py
r4839 r4842 20 20 os.remove(file) 21 21 22 def test_that_ output_is_as_expected(self):22 def test_that_UQ_output_is_as_expected(self): 23 23 norm = run_dam.main() 24 24 #print "norm",norm -
anuga_validation/automated_validation_tests/okushiri_tank_validation/compare_timeseries_with_measures.py
r4767 r4842 14 14 import project 15 15 16 #try: 17 # from pylab import ion, hold, plot, title, legend, xlabel, ylabel, savefig 18 #except: 19 # print 'Could not import pylab' 20 # plotting = False 21 #else: 22 # # Create plots as png files 23 # plotting = True 24 25 plotting = False # No plotting when running automated validation 16 try: 17 from pylab import ion, hold, plot, title, legend, xlabel, ylabel, savefig 18 plot([1,2]) 19 except: 20 print 'Could not plot' 21 plotting = False 22 else: 23 # Create plots as png files 24 plotting = True 25 26 27 #plotting = False # No plotting when running automated validation 26 28 27 29 -
anuga_validation/automated_validation_tests/urs_mux_files_validation/validate_Bf.py
r4417 r4842 38 38 39 39 # Remove garbage 40 print 'clean up'40 # print 'clean up' 41 41 for file in os.listdir('.'): 42 42 if file.endswith('.sww') or\ -
anuga_validation/automated_validation_tests/validate_all.py
r4810 r4842 30 30 31 31 for path, filename in validation_dirs_and_files: 32 print 'filename path', path, filename32 # print 'filename path', path, filename 33 33 34 34 os.chdir(path) 35 35 s = 'python %s' %( filename) 36 36 os.system(s) 37 print 'current dir', os.getcwd()37 # print 'current dir', os.getcwd() 38 38 39 39 # Back to parent directory 40 40 os.chdir(os.pardir) 41 41 42 print 'current dir', os.getcwd()42 # print 'current dir', os.getcwd() 43 43 44 44
Note: See TracChangeset
for help on using the changeset viewer.