Skip to content

Commit

Permalink
Update order of fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
camposandro committed Jul 9, 2024
2 parents 7b18689 + 818ee31 commit 8a44924
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions tests/corrgi/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 8a44924

Please sign in to comment.