From 5eb99d868051556dce3d509545d130971d74e1fa Mon Sep 17 00:00:00 2001 From: Carsten Koester Date: Wed, 25 May 2016 17:52:01 -0400 Subject: CSIT-114: Eliminate repeated download of PIP packages Allow VirtualEnv to use existing system-wide packages if they already exist. Change-Id: I6f39178d56e81affea0bee7b9065bef66712ddaa Signed-off-by: Carsten Koester --- resources/libraries/python/SetupFramework.py | 2 +- resources/libraries/python/TrafficScriptExecutor.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/libraries/python') diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index ddc5514c4a..b81a3065c6 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -102,7 +102,7 @@ def create_env_directory_at_node(node): ssh = SSH() ssh.connect(node) (ret_code, stdout, stderr) = ssh.exec_command( - 'cd {0} && rm -rf env && virtualenv env && . env/bin/activate && ' + 'cd {0} && rm -rf env && virtualenv --system-site-packages env && . env/bin/activate && ' 'pip install -r requirements.txt' .format(con.REMOTE_FW_DIR), timeout=100) if 0 != ret_code: diff --git a/resources/libraries/python/TrafficScriptExecutor.py b/resources/libraries/python/TrafficScriptExecutor.py index fa4462393c..108b2b9815 100644 --- a/resources/libraries/python/TrafficScriptExecutor.py +++ b/resources/libraries/python/TrafficScriptExecutor.py @@ -52,7 +52,7 @@ class TrafficScriptExecutor(object): logger.trace("{}".format(timeout)) ssh = SSH() ssh.connect(node) - cmd = ("cd {}; virtualenv env && " + + cmd = ("cd {}; virtualenv --system-site-packages env && " + "export PYTHONPATH=${{PWD}}; " + ". ${{PWD}}/env/bin/activate; " + "resources/traffic_scripts/{} {}") \ -- cgit 1.2.3-korg