Skip to content

Commit d7a3f68

Browse files
committed
Fix utility to return full path
1 parent 004692c commit d7a3f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils_for_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def _get_all_notebooks(
2424
directory: Path = ROOT_DIRECTORY, suffix: str = ".ipynb"
2525
) -> list[str]:
2626
return [
27-
file
27+
f"{root}/{file}"
2828
for root, _, files in os.walk(directory)
2929
for file in files
3030
if file.endswith(suffix)

0 commit comments

Comments
 (0)