Changeset 7653
- Timestamp:
- Mar 3, 2010, 5:21:17 PM (15 years ago)
- Location:
- anuga_validation/automated_validation_tests
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/patong_beach_validation/project.py
r7651 r7653 36 36 37 37 use_buildings = True 38 setup = ' trial' # This can be one of three values38 setup = 'basic' # This can be one of three values 39 39 # trial - coarsest mesh, fast 40 40 # basic - coarse mesh -
anuga_validation/automated_validation_tests/patong_beach_validation/validate.py
r7651 r7653 444 444 start_time = time.time() 445 445 446 (_, vtype, _)= odo.rsplit('.', 2)446 _, vtype, _ = odo.rsplit('.', 2) 447 447 vtype = vtype.lower() 448 448 log.critical('#' * 72) … … 450 450 if run_simulation(vtype, odo): 451 451 # get SWW names expected and valid, check 'equal' 452 (valid_sww, _)= odo.rsplit('.', 1)453 (expected_sww, _)= valid_sww.rsplit('.', 1)452 valid_sww, _ = odo.rsplit('.', 1) 453 expected_sww, _ = valid_sww.rsplit('.', 1) 454 454 check_that_output_is_as_expected(expected_sww, valid_sww, epsilon[odo]) 455 455 -
anuga_validation/automated_validation_tests/urs_mux_files_validation/validate_Bf.py
r4842 r7653 49 49 #------------------------------------------------------------- 50 50 if __name__ == "__main__": 51 suite = unittest.makeSuite(Test_Bf, 'test')51 suite = unittest.makeSuite(Test_Bf, 'test') 52 52 runner = unittest.TextTestRunner(verbosity=2) 53 53 runner.run(suite)
Note: See TracChangeset
for help on using the changeset viewer.