()
| 14 | copy_files_recursively(DataFlowPath.get_dataflow_scripts_dir(), target_dir) |
| 15 | |
| 16 | def _copy_pipelines(): |
| 17 | target_dir = os.getcwd() |
| 18 | if not os.path.exists(target_dir): |
| 19 | os.makedirs(target_dir) |
| 20 | copy_files_recursively(DataFlowPath.get_dataflow_pipelines_dir(), target_dir) |
| 21 | # Copy pipelines |
| 22 | |
| 23 | def _copy_playground(): |
| 24 | target_dir = os.path.join(os.getcwd(), "playground") |
no test coverage detected