baa5e292dc
Use xenial as node - and py35 as environment - for these jobs that run on master. We have switched the py34 job already to py35 with xenial. Update grafana for the change. Update tox environment to use a variable. Change-Id: Iadc4e03a4176a83e97c3b166c6043516ac57bcd8
33 lines
947 B
Bash
Executable File
33 lines
947 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# inspired from sister script run-tox-with-oslo-master.sh
|
|
|
|
venv=$1
|
|
|
|
if [[ -z "$venv" ]]; then
|
|
echo "Usage: $?"
|
|
echo
|
|
echo "VENV: The tox environment to run (eg 'py35')"
|
|
exit 1
|
|
fi
|
|
|
|
script_path=/usr/local/jenkins/slave_scripts
|
|
|
|
sed -i "s/neutron-lib.*/-e git+https:\/\/git.openstack.org\/openstack\/neutron-lib.git#egg=neutron-lib/g" requirements.txt
|
|
sed -i "s/neutron-lib.*/-e git+https:\/\/git.openstack.org\/openstack\/neutron-lib.git#egg=neutron-lib/g" upper-constraints.txt
|
|
|
|
cat << EOF >> tox.ini
|
|
|
|
[testenv:${venv}-neutron-lib-master]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
passenv = TRACE_FAILONLY GENERATE_HASHES http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
|
usedevelop = True
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = sh
|
|
commands =
|
|
{toxinidir}/tools/ostestr_compat_shim.sh {posargs}
|
|
EOF
|
|
|
|
$script_path/run-tox.sh $venv-neutron-lib-master
|