summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyen Hai <nguyentrihai93@gmail.com>2018-08-20 15:35:59 +0900
committerNguyen Hai <nguyentrihai93@gmail.com>2018-08-24 04:40:09 +0000
commitdd2b4a1d1d40ca8ec9a24d314039ac851316b406 (patch)
treece0e35af246460ecf405e97fa7254c1e20dd9976
parent0796b1fd91db51720535f848e8fe032541d015e7 (diff)
downloadglance_store-dd2b4a1d1d40ca8ec9a24d314039ac851316b406.tar.gz
import zuul job settings from project-config
This is a mechanically generated patch to complete step 1 of moving the zuul job settings out of project-config and into each project repository. Because there will be a separate patch on each branch, the branch specifiers for branch-specific jobs have been removed. Because this patch is generated by a script, there may be some cosmetic changes to the layout of the YAML file(s) as the contents are normalized. See the python3-first goal document for details: https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: I7d35b91ec8084ca6551fc048ae631da3e8a3d816 Story: #2002586 Task: #24297
-rw-r--r--.zuul.yaml21
-rw-r--r--test-requirements.txt9
-rwxr-xr-xtools/tox_install.sh55
-rw-r--r--tox.ini7
4 files changed, 34 insertions, 58 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
new file mode 100644
index 0000000..cd9e3ca
--- /dev/null
+++ b/.zuul.yaml
@@ -0,0 +1,21 @@
+- project:
+ templates:
+ - openstack-python-jobs
+ - openstack-python35-jobs
+ - publish-openstack-sphinx-docs
+ - release-notes-jobs
+ - check-requirements
+ - lib-forward-testing
+ check:
+ jobs:
+ - legacy-tempest-dsvm-full-ceph-plugin-src-glance_store:
+ voting: false
+ irrelevant-files:
+ - ^(test-|)requirements.txt$
+ - ^setup.cfg$
+ - legacy-tempest-dsvm-full-sheepdog:
+ voting: false
+ irrelevant-files:
+ - ^(test-|)requirements.txt$
+ - ^setup.cfg$
+
diff --git a/test-requirements.txt b/test-requirements.txt
index dd02da6..9954d02 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -23,3 +23,12 @@ bandit>=1.1.0 # Apache-2.0
sphinx!=1.3b1,<1.4,>=1.2.1 # BSD
oslosphinx>=4.7.0 # Apache-2.0
reno>=1.8.0 # Apache-2.0
+
+# Dependencies for each of the optional stores
+oslo.vmware>=2.17.0 # Apache-2.0
+httplib2>=0.7.5 # MIT
+python-swiftclient>=3.2.0 # Apache-2.0
+python-cinderclient!=1.7.0,!=1.7.1,>=1.6.0 # Apache-2.0
+os-brick>=1.8.0 # Apache-2.0
+oslo.rootwrap>=5.0.0 # Apache-2.0
+oslo.privsep>=1.9.0 # Apache-2.0 \ No newline at end of file
diff --git a/tools/tox_install.sh b/tools/tox_install.sh
deleted file mode 100755
index a074d24..0000000
--- a/tools/tox_install.sh
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/env bash
-
-# Library constraint file contains version pin that is in conflict with
-# installing the library from source. We should replace the version pin in
-# the constraints file before applying it for from-source installation.
-
-ZUUL_CLONER=/usr/zuul-env/bin/zuul-cloner
-BRANCH_NAME=master
-LIB_NAME=glance_store
-requirements_installed=$(echo "import openstack_requirements" | python 2>/dev/null ; echo $?)
-
-set -e
-
-CONSTRAINTS_FILE=$1
-shift
-
-install_cmd="pip install"
-mydir=$(mktemp -dt "$LIB_NAME-tox_install-XXXXXXX")
-trap "rm -rf $mydir" EXIT
-localfile=$mydir/upper-constraints.txt
-if [[ $CONSTRAINTS_FILE != http* ]]; then
- CONSTRAINTS_FILE=file://$CONSTRAINTS_FILE
-fi
-curl $CONSTRAINTS_FILE -k -o $localfile
-install_cmd="$install_cmd -c$localfile"
-
-if [ $requirements_installed -eq 0 ]; then
- echo "ALREADY INSTALLED" > /tmp/tox_install.txt
- echo "Requirements already installed; using existing package"
-elif [ -x "$ZUUL_CLONER" ]; then
- echo "ZUUL CLONER" > /tmp/tox_install.txt
- pushd $mydir
- $ZUUL_CLONER --cache-dir \
- /opt/git \
- --branch $BRANCH_NAME \
- git://git.openstack.org \
- openstack/requirements
- cd openstack/requirements
- $install_cmd -e .
- popd
-else
- echo "PIP HARDCODE" > /tmp/tox_install.txt
- if [ -z "$REQUIREMENTS_PIP_LOCATION" ]; then
- REQUIREMENTS_PIP_LOCATION="git+https://git.openstack.org/openstack/requirements@$BRANCH_NAME#egg=requirements"
- fi
- $install_cmd -U -e ${REQUIREMENTS_PIP_LOCATION}
-fi
-
-# This is the main purpose of the script: Allow local installation of
-# the current repo. It is listed in constraints file and thus any
-# install will be constrained and we need to unconstrain it.
-edit-constraints $localfile -- $LIB_NAME "-e file://$PWD#egg=$LIB_NAME"
-
-$install_cmd -U $*
-exit $?
diff --git a/tox.ini b/tox.ini
index 37ecd9b..5cfeba4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -6,10 +6,11 @@ skipsdist = True
[testenv]
setenv = VIRTUAL_ENV={envdir}
usedevelop = True
-install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata} --allow-all-external --allow-insecure netaddr -U {opts} {packages}
-deps = -r{toxinidir}/requirements.txt
+install_command = pip install {opts} {packages}
+deps =
+ -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata}
+ -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
- .[vmware,swift,cinder]
passenv = OS_TEST_*
commands = ostestr --slowest {posargs}