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 cb11921 commit b2beb59Copy full SHA for b2beb59
src/jote/jote.py
@@ -26,7 +26,7 @@
26
# Where can we expect to find Job definitions?
27
_DEFINITION_DIRECTORY: str = "data-manager"
28
# What's the default manifest file?
29
-_DEFAULT_MANIFEST: str = "manifest.yaml"
+_DEFAULT_MANIFEST: str = os.path.join(_DEFINITION_DIRECTORY, "manifest.yaml")
30
# Where can we expect to find test data?
31
_DATA_DIRECTORY: str = "data"
32
@@ -614,9 +614,6 @@ def _test(
614
)
615
project_path = t_compose.create()
616
617
- test_path: str = t_compose.get_test_path()
618
- print(f"# path={test_path}")
619
-
620
if input_files:
621
# Copy the data into the test's project directory.
622
# Data's expected to be found in the Job's 'inputs'.
0 commit comments