Skip to content

Commit 160d3c3

Browse files
committed
tests/refactor: split up utils in functions and models
1 parent 435d6b8 commit 160d3c3

File tree

5 files changed

+542
-47
lines changed

5 files changed

+542
-47
lines changed

tests/test_for_utils/test_banded_linalg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
lu_solve_banded,
1717
slogdet_lu_banded,
1818
)
19-
from tests.test_for_utils.utils import get_banded_slogdet
19+
from tests.test_for_utils.utils_funcs import get_banded_slogdet
2020

2121
### Test Suite ###
2222

tests/test_for_utils/test_finite_differences.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
gen_squ_fw_fin_diff_mat_cho_banded,
1717
)
1818
from tests.fixtures import reference_finite_differences # noqa: F401
19-
from tests.test_for_utils.utils import (
19+
from tests.test_for_utils.utils_funcs import (
2020
conv_upper_cho_banded_storage_to_sparse,
2121
multiply_vect_with_squ_fw_fin_diff_orig_first,
2222
multiply_vect_with_squ_fw_fin_diff_transpose_first,

tests/test_for_utils/test_models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import pytest
1212

1313
from chemotools.utils import models
14-
from tests.test_for_utils.utils import ExpectedWhittakerSmoothLambda
14+
from tests.test_for_utils.utils_models import ExpectedWhittakerSmoothLambda
1515

1616
### Type aliases ###
1717

0 commit comments

Comments
 (0)