We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd49f9d commit d17dd8dCopy full SHA for d17dd8d
src/lsdb_rubin/tract_patch_search.py
@@ -1,4 +1,3 @@
1
-import math
2
from typing import TYPE_CHECKING
3
4
from lsdb.core.search.abstract_search import AbstractSearch
tests/lsdb_rubin/conftest.py
@@ -1,12 +1,9 @@
-import pickle
from pathlib import Path
import lsdb
5
import pytest
6
-
7
from skymap_convert import ConvertedSkymapReader
8
9
-DATA_DIR_NAME = "data"
10
TEST_DIR = Path(__file__).parent.parent
11
SKYMAP_DIR_NAME = "skymaps"
12
SMALL_SKY_DIR_NAME = "small_sky"
@@ -15,7 +12,7 @@
15
@pytest.fixture
16
13
def test_data_dir():
17
14
"""Fixture to provide the path to the test data directory."""
18
- return Path(TEST_DIR) / DATA_DIR_NAME
+ return Path(TEST_DIR) / "data"
19
20
21
0 commit comments