We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571a5eb commit 2b4c644Copy full SHA for 2b4c644
2 files changed
MANIFEST.in
@@ -1,2 +1,3 @@
1
recursive-include dms_datastore/config_data *
2
include dms_datastore/usgs_parameter_cd_query.txt
3
+recursive-include tests/data *
tests/test_read_yaml_header.py
@@ -9,7 +9,6 @@
9
read_yaml_header,
10
)
11
12
-DATA_FILE = Path(__file__).parent.resolve() / "data" / "header_data.txt"
13
14
15
def load_cases():
@@ -18,9 +17,10 @@ def load_cases():
18
17
current_lines = []
19
# This tedious way of doing things is to avoid some GiHub-side substitutions of $SRC that were not expanded
20
_candidates = [
+ Path(__file__).parent.resolve() / "data" / "header_data.txt",
21
Path("tests/data/header_data.txt"),
22
Path("data/header_data.txt"),
23
- Path(__file__).parent.resolve() / "data" / "header_data.txt",
+
24
]
25
26
for candidate in _candidates:
0 commit comments