()
| 5 | from .copy_funcs import copy_files_without_recursion, copy_file, copy_files_recursively |
| 6 | |
| 7 | def _copy_scripts(): |
| 8 | target_dir = os.getcwd() |
| 9 | if not os.path.exists(target_dir): |
| 10 | os.makedirs(target_dir) |
| 11 | |
| 12 | # script_path = DataFlowPath.get_dataflow_scripts_dir() |
| 13 | |
| 14 | copy_files_recursively(DataFlowPath.get_dataflow_scripts_dir(), target_dir) |
| 15 | |
| 16 | def _copy_pipelines(): |
| 17 | target_dir = os.getcwd() |
nothing calls this directly
no test coverage detected