Skip to content

Commit 77c4661

Browse files
committed
Add truth values for mag crossmatch
1 parent 69a6c67 commit 77c4661

23 files changed

+2328
-291
lines changed

tests/conftest.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import pandas as pd
12
from pathlib import Path
23

34
import pytest
@@ -29,3 +30,18 @@ def m67_delve_dir(test_data_dir):
2930
@pytest.fixture
3031
def m67_ps1_dir(test_data_dir):
3132
return test_data_dir / "m67" / "ps1_cone"
33+
34+
35+
@pytest.fixture
36+
def m67_delve_small_dir(test_data_dir):
37+
return test_data_dir / "m67" / "delve_cone_small"
38+
39+
40+
@pytest.fixture
41+
def m67_ps1_small_dir(test_data_dir):
42+
return test_data_dir / "m67" / "ps1_cone_small"
43+
44+
45+
@pytest.fixture
46+
def xmatch_mags(test_data_dir):
47+
return pd.read_csv(test_data_dir / "expected_results" / "xmatch_mags_rband.csv")

tests/data/expected_results/xmatch_mags_rband.csv

Lines changed: 940 additions & 0 deletions
Large diffs are not rendered by default.

tests/data/fetch_catalogs.ipynb

Lines changed: 0 additions & 231 deletions
This file was deleted.

0 commit comments

Comments
 (0)