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 cd6836b commit d3a21bdCopy full SHA for d3a21bd
openeo/testing/io.py
@@ -9,6 +9,7 @@
9
class PreprocessError(ValueError):
10
pass
11
12
+
13
class TestDataLoader:
14
"""
15
Test data helper: easily resolve paths to test data files,
@@ -31,6 +32,9 @@ def test_data() -> TestDataLoader:
31
32
Improved ``preprocess``: can now be a replacement dict (with regex support).
33
34
35
+ # Avoid pytest collecting this class as a test case (as it starts with "Test" prefix)
36
+ __test__ = False
37
38
def __init__(self, root: Union[str, Path]):
39
self.data_root = Path(root)
40
0 commit comments