Skip to content

Commit

Permalink
test fix #289
Browse files Browse the repository at this point in the history
- rename widescale_test.py to widescale.py
- modify associated imports
- reset tests to run broadly
  • Loading branch information
kkappler committed Sep 20, 2023
1 parent d027629 commit 6580210
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion aurora/test_utils/earthscope/00_catalog_SPUD.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion aurora/test_utils/earthscope/01_test_load_spud_tfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion aurora/test_utils/earthscope/05_compare_tfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.

0 comments on commit 6580210

Please sign in to comment.