summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Bragstad <lbragstad@gmail.com>2018-08-31 15:22:25 +0000
committerTony Breeds <tony@bakeyournoodle.com>2018-09-07 13:26:57 +1000
commit9a6875d479c22b81b47f545253f674a8c6221331 (patch)
treef0b097fc145181b3df88316fa302c175b69a5c9f
parent631964c51a668b4b160ca724fd8e03b071e8db44 (diff)
downloadkeystonemiddleware-9a6875d479c22b81b47f545253f674a8c6221331.tar.gz
Remove tox_install.sh
As part of removing reliance on the old and deprecated zuul-cloner, we need to shift constraints declaration to the deps line. This means we unfortunately have to duplicate the extras declarations into test-requirements - because otherwise the contraints for keystonemiddleware conflicts with the installation of itself. Change-Id: I8dbb31d1c1fda6df386f456dcf1d8bbed6d168ce
-rw-r--r--test-requirements.txt3
-rwxr-xr-xtools/tox_install.sh32
-rw-r--r--tox.ini11
3 files changed, 6 insertions, 40 deletions
diff --git a/test-requirements.txt b/test-requirements.txt
index ef2890e..3153d81 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -12,11 +12,12 @@ mock>=2.0.0 # BSD
oslotest>=3.2.0 # Apache-2.0
requests-mock>=1.2.0 # Apache-2.0
stevedore>=1.20.0 # Apache-2.0
-stestr # Apache-2.0
+stestr>=2.0.0 # Apache-2.0
testresources>=2.0.0 # Apache-2.0/BSD
testtools>=2.2.0 # MIT
python-memcached>=1.56 # PSF
WebTest>=2.0.27 # MIT
+oslo.messaging>=5.29.0 # Apache-2.0
# Bandit security code scanner
bandit>=1.1.0 # Apache-2.0
diff --git a/tools/tox_install.sh b/tools/tox_install.sh
deleted file mode 100755
index f3423d9..0000000
--- a/tools/tox_install.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env bash
-
-# Client constraint file contains this client version pin that is in conflict
-# with installing the client from source. We should remove the version pin in
-# the constraints file before applying it for from-source installation.
-
-CONSTRAINTS_FILE="$1"
-shift 1
-
-set -e
-
-# NOTE(tonyb): Place this in the tox enviroment's log dir so it will get
-# published to logs.openstack.org for easy debugging.
-localfile="$VIRTUAL_ENV/log/upper-constraints.txt"
-
-if [[ "$CONSTRAINTS_FILE" != http* ]]; then
- CONSTRAINTS_FILE="file://$CONSTRAINTS_FILE"
-fi
-# NOTE(tonyb): need to add curl to bindep.txt if the project supports bindep
-curl "$CONSTRAINTS_FILE" --insecure --progress-bar --output "$localfile"
-
-pip install -c"$localfile" openstack-requirements
-
-# 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" -- "$CLIENT_NAME"
-
-if [[ -n "$@" ]]; then
- pip install -c"$localfile" -U "$@"
-fi
-exit $?
diff --git a/tox.ini b/tox.ini
index b0b954c..348687b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,18 +5,16 @@ envlist = py35,py27,pep8,releasenotes
[testenv]
usedevelop = True
-install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
- BRANCH_NAME=master
- CLIENT_NAME=keystonemiddleware
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=60
TESTS_DIR=./keystonemiddleware/tests/unit/
-deps = -r{toxinidir}/requirements.txt
- -r{toxinidir}/test-requirements.txt
- .[audit_notifications]
+deps =
+ -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
+ -r{toxinidir}/requirements.txt
+ -r{toxinidir}/test-requirements.txt
commands = stestr run {posargs}
[testenv:pep8]
@@ -89,4 +87,3 @@ deps =
-c{toxinidir}/lower-constraints.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
- .[audit_notifications]