diff --git a/src/README.md b/mbs_results/README.md similarity index 100% rename from src/README.md rename to mbs_results/README.md diff --git a/src/__init__.py b/mbs_results/__init__.py similarity index 100% rename from src/__init__.py rename to mbs_results/__init__.py diff --git a/src/apply_imputation_link.py b/mbs_results/apply_imputation_link.py similarity index 100% rename from src/apply_imputation_link.py rename to mbs_results/apply_imputation_link.py diff --git a/src/construction_matches.py b/mbs_results/construction_matches.py similarity index 100% rename from src/construction_matches.py rename to mbs_results/construction_matches.py diff --git a/src/cumulative_imputation_links.py b/mbs_results/cumulative_imputation_links.py similarity index 100% rename from src/cumulative_imputation_links.py rename to mbs_results/cumulative_imputation_links.py diff --git a/src/flag_and_count_matched_pairs.py b/mbs_results/flag_and_count_matched_pairs.py similarity index 100% rename from src/flag_and_count_matched_pairs.py rename to mbs_results/flag_and_count_matched_pairs.py diff --git a/src/forward_link.py b/mbs_results/forward_link.py similarity index 100% rename from src/forward_link.py rename to mbs_results/forward_link.py diff --git a/src/imputation_flags.py b/mbs_results/imputation_flags.py similarity index 100% rename from src/imputation_flags.py rename to mbs_results/imputation_flags.py diff --git a/src/link_filter.py b/mbs_results/link_filter.py similarity index 100% rename from src/link_filter.py rename to mbs_results/link_filter.py diff --git a/tests/test_apply_imputation_link.py b/tests/test_apply_imputation_link.py index 568bfcec..7f6adadb 100755 --- a/tests/test_apply_imputation_link.py +++ b/tests/test_apply_imputation_link.py @@ -4,7 +4,7 @@ from helper_functions import load_and_format from pandas.testing import assert_frame_equal -from src.apply_imputation_link import create_and_merge_imputation_values +from mbs_results.apply_imputation_link import create_and_merge_imputation_values @pytest.fixture(scope="class") diff --git a/tests/test_construction_matches.py b/tests/test_construction_matches.py index 104521c2..14fc3962 100644 --- a/tests/test_construction_matches.py +++ b/tests/test_construction_matches.py @@ -4,8 +4,8 @@ from helper_functions import load_and_format from pandas.testing import assert_frame_equal -from src.construction_matches import flag_construction_matches -from src.flag_and_count_matched_pairs import count_matches +from mbs_results.construction_matches import flag_construction_matches +from mbs_results.flag_and_count_matched_pairs import count_matches @pytest.fixture(scope="class") diff --git a/tests/test_cumulative_imputation_links.py b/tests/test_cumulative_imputation_links.py index fc758b9d..4cc785f6 100755 --- a/tests/test_cumulative_imputation_links.py +++ b/tests/test_cumulative_imputation_links.py @@ -4,7 +4,7 @@ from helper_functions import load_and_format from pandas.testing import assert_frame_equal -from src.cumulative_imputation_links import get_cumulative_links +from mbs_results.cumulative_imputation_links import get_cumulative_links @pytest.fixture(scope="class") diff --git a/tests/test_flag_and_count_matched_pairs.py b/tests/test_flag_and_count_matched_pairs.py index 79c25eba..21ffa095 100644 --- a/tests/test_flag_and_count_matched_pairs.py +++ b/tests/test_flag_and_count_matched_pairs.py @@ -4,7 +4,7 @@ from helper_functions import load_and_format from pandas.testing import assert_frame_equal -from src.flag_and_count_matched_pairs import ( +from mbs_results.flag_and_count_matched_pairs import ( count_matches, flag_matched_pair_merge, flag_matched_pair_shift, diff --git a/tests/test_forward_link.py b/tests/test_forward_link.py index 51fa63c8..aef3516a 100644 --- a/tests/test_forward_link.py +++ b/tests/test_forward_link.py @@ -2,7 +2,7 @@ from helper_functions import load_and_format from pandas.testing import assert_frame_equal -from src.forward_link import calculate_imputation_link +from mbs_results.forward_link import calculate_imputation_link scenarios = ["calculate_links_test_data"] diff --git a/tests/test_imputation_flags.py b/tests/test_imputation_flags.py index 315b5fa3..4b84dc0f 100644 --- a/tests/test_imputation_flags.py +++ b/tests/test_imputation_flags.py @@ -4,7 +4,7 @@ from helper_functions import load_and_format from pandas.testing import assert_frame_equal -from src.imputation_flags import create_impute_flags, generate_imputation_marker +from mbs_results.imputation_flags import create_impute_flags, generate_imputation_marker @pytest.fixture(scope="class") diff --git a/tests/test_link_filter.py b/tests/test_link_filter.py index bbd5cc75..9407a756 100644 --- a/tests/test_link_filter.py +++ b/tests/test_link_filter.py @@ -2,7 +2,7 @@ import pytest from pandas.testing import assert_frame_equal -from src.link_filter import flag_rows_to_ignore +from mbs_results.link_filter import flag_rows_to_ignore @pytest.mark.parametrize("scenario", ["test_flag_data"])