diff --git a/tests/corrgi/conftest.py b/tests/corrgi/conftest.py index 178dc24..2c96967 100644 --- a/tests/corrgi/conftest.py +++ b/tests/corrgi/conftest.py @@ -91,6 +91,21 @@ def acf_rans_weight_catalog(hipscat_catalogs_dir): return lsdb.read_hipscat(hipscat_catalogs_dir / "acf_rans_weight") +@pytest.fixture +def pcf_gals_weight_catalog(hipscat_catalogs_dir): + return lsdb.read_hipscat(hipscat_catalogs_dir / "pcf_gals_weight") + + +@pytest.fixture +def pcf_gals1_weight_catalog(hipscat_catalogs_dir): + return lsdb.read_hipscat(hipscat_catalogs_dir / "pcf_gals1_weight") + + +@pytest.fixture +def pcf_rans_weight_catalog(hipscat_catalogs_dir): + return lsdb.read_hipscat(hipscat_catalogs_dir / "pcf_rans_weight") + + @pytest.fixture def acf_bins_left_edges(acf_expected_results): return np.load(acf_expected_results / "l_binedges_acf.npy") @@ -121,21 +136,6 @@ def acf_rr_counts_with_weights(acf_expected_results): return np.load(acf_expected_results / "rr_acf_weight.npy") -@pytest.fixture -def pcf_gals_weight_catalog(hipscat_catalogs_dir): - return lsdb.read_hipscat(hipscat_catalogs_dir / "pcf_gals_weight") - - -@pytest.fixture -def pcf_gals1_weight_catalog(hipscat_catalogs_dir): - return lsdb.read_hipscat(hipscat_catalogs_dir / "pcf_gals1_weight") - - -@pytest.fixture -def pcf_rans_weight_catalog(hipscat_catalogs_dir): - return lsdb.read_hipscat(hipscat_catalogs_dir / "pcf_rans_weight") - - @pytest.fixture def pcf_dd_counts(pcf_expected_results): return np.load(pcf_expected_results / "dd_pcf.npy")