7a0581bb70
The new version of install_venv_common evaluates requirements.txt and test-requirements.txt at the same time and we avoid Django 1.6 is installed when evaluating django-nose dependencies. Change-Id: I2ab7108b3615ac6c0525089b81b80e5c0a4793fc Closes-Bug: #1250581
8 lines
218 B
Bash
Executable File
8 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
TOOLS_PATH=${TOOLS_PATH:-$(dirname $0)}
|
|
VENV_PATH=${VENV_PATH:-${TOOLS_PATH}}
|
|
VENV_DIR=${VENV_NAME:-/../.venv}
|
|
TOOLS=${TOOLS_PATH}
|
|
VENV=${VENV:-${VENV_PATH}/${VENV_DIR}}
|
|
source ${VENV}/bin/activate && "$@"
|