diff --git a/kratos/python_scripts/testing/ci_utilities.py b/kratos/python_scripts/testing/ci_utilities.py index 5ce9dc0741c2..ac30a2f30b9a 100644 --- a/kratos/python_scripts/testing/ci_utilities.py +++ b/kratos/python_scripts/testing/ci_utilities.py @@ -62,8 +62,8 @@ def are_only_python_files_changed() -> bool: def print_ci_information() -> None: """This function prints an overview of the CI related information""" - pprint(f"{sorted(map(str,changed_files()))=}") - pprint(f"{sorted(ci_applications())=}") + pprint(sorted(map(lambda p : p.as_posix(), changed_files()))) + pprint(sorted(ci_applications())) print(f"{sorted(get_changed_files_extensions())=}") print(f"{are_only_python_files_changed()=}") print(f"{sorted(get_changed_applications())=}")