(source, target)
| 493 | return None # No free port found in the range |
| 494 | |
| 495 | def create_symlink(source, target): |
| 496 | if os.name == 'nt': # Check if running on Windows |
| 497 | run_command(['mklink', '/D', target, source]) |
| 498 | else: |
| 499 | os.symlink(source, target, target_is_directory=True) |
| 500 | |
| 501 | def create_virtualenv(venv_path): |
| 502 | run_command(['python', '-m', 'venv', venv_path]) |
no test coverage detected