Mark that the requirements from the given file are installed by copying it into the root directory of the virtualenv.
(venv_dir, reqs_path)
| 371 | |
| 372 | |
| 373 | def mark_reqs_installed(venv_dir, reqs_path): |
| 374 | '''Mark that the requirements from the given file are installed by copying it into |
| 375 | the root directory of the virtualenv.''' |
| 376 | installed_reqs_path = os.path.join(venv_dir, os.path.basename(reqs_path)) |
| 377 | shutil.copyfile(reqs_path, installed_reqs_path) |
| 378 | |
| 379 | |
| 380 | def reqs_are_installed(venv_dir, reqs_path): |
no test coverage detected