
* add missing dependency * set job non voting Change-Id: Ideea29bd423546e0ad4b36d4c5e92b6132d88e69
14 lines
429 B
Bash
14 lines
429 B
Bash
#!/bin/bash -xe
|
|
|
|
source /usr/local/jenkins/slave_scripts/select-mirror.sh openstack savanna
|
|
|
|
set -o pipefail
|
|
|
|
# replace hacking with master tarball
|
|
sed -i '/^hacking/d' test-requirements.txt
|
|
echo -e "-f http://tarballs.openstack.org/hacking/hacking-master.tar.gz#egg=hacking-master\nhacking==master\n$(cat test-requirements.txt)" > test-requirements.txt
|
|
|
|
sed -i '/^ignore/d' tox.ini
|
|
|
|
tox -v -epep8 -- --statistics | tee pep8.txt
|