Index: trunk/tests/test_extract_waves.py =================================================================== diff -u -r29 -r37 --- trunk/tests/test_extract_waves.py (.../test_extract_waves.py) (revision 29) +++ trunk/tests/test_extract_waves.py (.../test_extract_waves.py) (revision 37) @@ -36,8 +36,8 @@ def test_given_waves_folder_then_subset_collection_is_extracted(self): # 1. Given # When using local data you can just replace the comment in these lines - # dir_test_data = TestUtils.get_local_test_data_dir('netCDF_Waves_data') - dir_test_data = 'P:\\metocean-data\\open\\ERA5\\data\\Global' + dir_test_data = TestUtils.get_local_test_data_dir('netCDF_Waves_data') + # dir_test_data = 'P:\\metocean-data\\open\\ERA5\\data\\Global' input_data = data_acquisition.InputData() input_data.coord_list = [(4.2, 2.4),] @@ -56,13 +56,12 @@ assert data_dict[output_data.var_val_key] is not None assert data_dict[output_data.var_val_key]['swh'] is not None - @pytest.mark.systemtest def test_given_waves_folder_then_subset_collection_is_extracted_with_coord_list(self): # 1. Given # When using local data you can just replace the comment in these lines - # dir_test_data = TestUtils.get_local_test_data_dir('netCDF_Waves_data') - dir_test_data = 'P:\\metocean-data\\open\\ERA5\\data\\Global' + dir_test_data = TestUtils.get_local_test_data_dir('netCDF_Waves_data') + # dir_test_data = 'P:\\metocean-data\\open\\ERA5\\data\\Global' input_data = data_acquisition.InputData() input_data.coord_list = [(4.2, 2.4), (42, 2.4), (42, 24), (4.2, 24)]