Skip to content

Commit b2beb59

Browse files
author
Alan Christie
committed
fix: Better default manifest
Removed superfluous logging
1 parent cb11921 commit b2beb59

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/jote/jote.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Where can we expect to find Job definitions?
2727
_DEFINITION_DIRECTORY: str = "data-manager"
2828
# What's the default manifest file?
29-
_DEFAULT_MANIFEST: str = "manifest.yaml"
29+
_DEFAULT_MANIFEST: str = os.path.join(_DEFINITION_DIRECTORY, "manifest.yaml")
3030
# Where can we expect to find test data?
3131
_DATA_DIRECTORY: str = "data"
3232

@@ -614,9 +614,6 @@ def _test(
614614
)
615615
project_path = t_compose.create()
616616

617-
test_path: str = t_compose.get_test_path()
618-
print(f"# path={test_path}")
619-
620617
if input_files:
621618
# Copy the data into the test's project directory.
622619
# Data's expected to be found in the Job's 'inputs'.

0 commit comments

Comments
 (0)