We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42e616e commit 9b8a4ccCopy full SHA for 9b8a4cc
tests/test_esmini_examples.py
@@ -83,9 +83,6 @@ def test_locator():
83
# Run xys2sts and ensure it executes without errors
84
sts_cl = locator.xys2sts(xys)
85
86
- # Check that str_tree.geometries only contains LineString objects
87
- assert all(isinstance(geom, shapely.LineString) for geom in locator.str_tree.geometries), \
88
- "str_tree contains non-LineString geometries"
89
90
#check that sts_cl is not empty or has expected properties
91
assert len(sts_cl["s"]) > 0, "sts_cl output is empty"
@@ -103,4 +100,5 @@ def test_parquet():
103
100
104
101
105
102
if __name__ == "__main__":
106
- pass
+ test_locator()
+ # pass
0 commit comments