diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2216fde7..24a6a6ff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,9 +44,9 @@ jobs: - name: Run Tests run: | - pytest -s -v tests/synthetic/*.py --cov=./ --cov-report=xml --cov=aurora + pytest -s -v --cov=./ --cov-report=xml --cov=aurora + # pytest -s -v tests/synthetic/*.py --cov=./ --cov-report=xml --cov=aurora # pytest -s -v tests/io/test_issue_139.py --cov=./ --cov-report=xml --cov=aurora - # pytest -s -v --cov=./ --cov-report=xml --cov=aurora - name: "Upload coverage to Codecov" uses: codecov/codecov-action@v1 diff --git a/aurora/test_utils/earthscope/00_catalog_SPUD.py b/aurora/test_utils/earthscope/00_catalog_SPUD.py index 1f222566..2bc888a1 100644 --- a/aurora/test_utils/earthscope/00_catalog_SPUD.py +++ b/aurora/test_utils/earthscope/00_catalog_SPUD.py @@ -16,7 +16,7 @@ from aurora.test_utils.earthscope.helpers import get_summary_table_schema_v2 from aurora.test_utils.earthscope.helpers import get_via_curl from aurora.test_utils.earthscope.helpers import strip_xml_tags -from aurora.test_utils.earthscope.widescale_test import WidesScaleTest +from aurora.test_utils.earthscope.widescale import WidesScaleTest input_spud_ids_file = AURORA_PATH.joinpath( diff --git a/aurora/test_utils/earthscope/01_test_load_spud_tfs.py b/aurora/test_utils/earthscope/01_test_load_spud_tfs.py index cb7a848f..a196e687 100644 --- a/aurora/test_utils/earthscope/01_test_load_spud_tfs.py +++ b/aurora/test_utils/earthscope/01_test_load_spud_tfs.py @@ -35,7 +35,7 @@ from aurora.test_utils.earthscope.helpers import get_summary_table_filename from aurora.test_utils.earthscope.helpers import load_most_recent_summary from aurora.test_utils.earthscope.standards import SCHEMA_CSVS -from aurora.test_utils.earthscope.widescale_test import WidesScaleTest +from aurora.test_utils.earthscope.widescale import WidesScaleTest diff --git a/aurora/test_utils/earthscope/02_test_station_inventory_valid.py b/aurora/test_utils/earthscope/02_test_station_inventory_valid.py index 80009a2e..c3476c74 100644 --- a/aurora/test_utils/earthscope/02_test_station_inventory_valid.py +++ b/aurora/test_utils/earthscope/02_test_station_inventory_valid.py @@ -33,7 +33,7 @@ from aurora.test_utils.earthscope.helpers import SUMMARY_TABLES_PATH from aurora.test_utils.earthscope.helpers import timestamp_now from aurora.test_utils.earthscope.helpers import USE_CHANNEL_WILDCARDS -from aurora.test_utils.earthscope.widescale_test import WidesScaleTest +from aurora.test_utils.earthscope.widescale import WidesScaleTest from mth5.mth5 import MTH5 from mth5.clients import FDSN diff --git a/aurora/test_utils/earthscope/03_test_download_from_earthscope.py b/aurora/test_utils/earthscope/03_test_download_from_earthscope.py index d71e6940..6226811a 100644 --- a/aurora/test_utils/earthscope/03_test_download_from_earthscope.py +++ b/aurora/test_utils/earthscope/03_test_download_from_earthscope.py @@ -21,7 +21,7 @@ from aurora.test_utils.earthscope.helpers import get_most_recent_summary_filepath #from aurora.test_utils.earthscope.helpers import get_summary_table_schema from aurora.test_utils.earthscope.helpers import USE_CHANNEL_WILDCARDS -from aurora.test_utils.earthscope.widescale_test import WidesScaleTest +from aurora.test_utils.earthscope.widescale import WidesScaleTest from mth5.mth5 import MTH5 from mth5.clients import FDSN diff --git a/aurora/test_utils/earthscope/04_test_processing_with_aurora.py b/aurora/test_utils/earthscope/04_test_processing_with_aurora.py index bd2daa63..ea69a6db 100644 --- a/aurora/test_utils/earthscope/04_test_processing_with_aurora.py +++ b/aurora/test_utils/earthscope/04_test_processing_with_aurora.py @@ -18,7 +18,7 @@ from aurora.config.config_creator import ConfigCreator from aurora.pipelines.process_mth5 import process_mth5 from aurora.pipelines.run_summary import RunSummary -from aurora.test_utils.earthscope.widescale_test import WidesScaleTest +from aurora.test_utils.earthscope.widescale import WidesScaleTest from aurora.transfer_function.kernel_dataset import KernelDataset from mth5.clients import FDSN, MakeMTH5 diff --git a/aurora/test_utils/earthscope/05_compare_tfs.py b/aurora/test_utils/earthscope/05_compare_tfs.py index a5f01d22..fbb182f0 100644 --- a/aurora/test_utils/earthscope/05_compare_tfs.py +++ b/aurora/test_utils/earthscope/05_compare_tfs.py @@ -33,7 +33,7 @@ from aurora.test_utils.earthscope.helpers import get_summary_table_schema_v2 from aurora.test_utils.earthscope.helpers import restrict_to_mda from aurora.test_utils.earthscope.helpers import SPUD_XML_PATHS -from aurora.test_utils.earthscope.widescale_test import WidesScaleTest +from aurora.test_utils.earthscope.widescale import WidesScaleTest STAGE_ID = 5 diff --git a/aurora/test_utils/earthscope/widescale_test.py b/aurora/test_utils/earthscope/widescale.py similarity index 100% rename from aurora/test_utils/earthscope/widescale_test.py rename to aurora/test_utils/earthscope/widescale.py