()
| 21 | # Copy pipelines |
| 22 | |
| 23 | def _copy_playground(): |
| 24 | target_dir = os.path.join(os.getcwd(), "playground") |
| 25 | if not os.path.exists(target_dir): |
| 26 | os.makedirs(target_dir) |
| 27 | copy_files_recursively(DataFlowPath.get_dataflow_playground_dir(), target_dir) |
| 28 | |
| 29 | def _copy_examples(): |
| 30 | target_dir = os.path.join(os.getcwd(), "example_data") |
no test coverage detected