Skip to content

Commit

Permalink
replace imports from pipelines/fourier_coefficients with mth5
Browse files Browse the repository at this point in the history
- if tests pass we should be able to delete pipelines/fourier_coefficients
  • Loading branch information
kkappler committed Jan 7, 2025
1 parent 13fc2b8 commit 966b911
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions tests/synthetic/test_fourier_coefficients.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
import unittest

from aurora.config.config_creator import ConfigCreator
from aurora.pipelines.fourier_coefficients import add_fcs_to_mth5
from aurora.pipelines.fourier_coefficients import fc_decimations_creator

# from aurora.pipelines.fourier_coefficients import read_back_fcs
from aurora.pipelines.process_mth5 import process_mth5
from aurora.test_utils.synthetic.make_processing_configs import (
create_test_run_config,
)
from aurora.test_utils.synthetic.paths import SyntheticTestPaths
from loguru import logger
from mth5.data.make_mth5_from_asc import create_test1_h5
from mth5.data.make_mth5_from_asc import create_test2_h5
from mth5.data.make_mth5_from_asc import create_test3_h5
from mth5.data.make_mth5_from_asc import create_test12rr_h5
from mth5.timeseries.spectre.helpers import read_back_fcs

# from mtpy-v2
from mtpy.processing import RunSummary, KernelDataset

from loguru import logger
from mth5.helpers import close_open_files
from mth5.timeseries.spectre.helpers import add_fcs_to_mth5
from mth5.timeseries.spectre.helpers import fc_decimations_creator
from mth5.timeseries.spectre.helpers import read_back_fcs
from mtpy.processing import RunSummary, KernelDataset # from mtpy-v2

synthetic_test_paths = SyntheticTestPaths()
synthetic_test_paths.mkdirs()
Expand Down

0 comments on commit 966b911

Please sign in to comment.