|
5 | 5 | import numpy as np
|
6 | 6 | from diff_viz.data_loading import check_mpt_data, clean_mpt_data, combine_csvs
|
7 | 7 | from hypothesis import HealthCheck, given, settings, strategies as st
|
8 |
| -from diff_viz.tests.hypothesis_util_functions import features_dataframe |
| 8 | +from diff_viz.tests.hypothesis_util_functions import hypothesis_features_dataframe |
9 | 9 |
|
10 |
| -df = features_dataframe() |
| 10 | +df = hypothesis_features_dataframe() |
11 | 11 |
|
12 | 12 | @given(df)
|
13 | 13 | @settings(suppress_health_check=[HealthCheck.large_base_example, HealthCheck.too_slow])
|
@@ -50,15 +50,15 @@ def test_clean_mpt_data(df):
|
50 | 50 |
|
51 | 51 | def test_combine_csvs():
|
52 | 52 | file_list = [
|
53 |
| - 'diff_viz/tests/testing_data/features_P14_40nm_s1_v1.csv', |
54 |
| - 'diff_viz/tests/testing_data/features_P14_40nm_s1_v2.csv', |
55 |
| - 'diff_viz/tests/testing_data/features_P14_40nm_s1_v3.csv', |
56 |
| - 'diff_viz/tests/testing_data/features_P35_brain_2_slice_1_vid_1.csv', |
57 |
| - 'diff_viz/tests/testing_data/features_P35_brain_2_slice_1_vid_2.csv', |
58 |
| - 'diff_viz/tests/testing_data/features_P35_brain_2_slice_1_vid_3.csv', |
59 |
| - 'diff_viz/tests/testing_data/features_P70_40nm_s1_v1.csv', |
60 |
| - 'diff_viz/tests/testing_data/features_P70_40nm_s1_v2.csv', |
61 |
| - 'diff_viz/tests/testing_data/features_P70_40nm_s1_v3.csv', |
| 53 | + 'diff_viz/tests/testing_data/feature_data/features_P14_40nm_s1_v1.csv', |
| 54 | + 'diff_viz/tests/testing_data/feature_data/features_P14_40nm_s1_v2.csv', |
| 55 | + 'diff_viz/tests/testing_data/feature_data/features_P14_40nm_s1_v3.csv', |
| 56 | + 'diff_viz/tests/testing_data/feature_data/features_P35_brain_2_slice_1_vid_1.csv', |
| 57 | + 'diff_viz/tests/testing_data/feature_data/features_P35_brain_2_slice_1_vid_2.csv', |
| 58 | + 'diff_viz/tests/testing_data/feature_data/features_P35_brain_2_slice_1_vid_3.csv', |
| 59 | + 'diff_viz/tests/testing_data/feature_data/features_P70_40nm_s1_v1.csv', |
| 60 | + 'diff_viz/tests/testing_data/feature_data/features_P70_40nm_s1_v2.csv', |
| 61 | + 'diff_viz/tests/testing_data/feature_data/features_P70_40nm_s1_v3.csv', |
62 | 62 | ]
|
63 | 63 |
|
64 | 64 | def helper_func():
|
|
0 commit comments