From 94391a32405664960a99b25d1fbb8a9a0db4408f Mon Sep 17 00:00:00 2001 From: Morgan Fainberg Date: Sat, 21 May 2016 16:41:38 -0700 Subject: [PATCH] Remove helper script for py34 Remove the helper script for py34, it prevents the use of arguments being passed down e.g. tox -epy34 -- --failing due to the lack of passing {posargs} to the script. Since py34 has no special exceptions now, the specific env for py34 with a special pretty_tox script is not needed. Change-Id: I4d960d82e2844c0c82a14be5e92230f1698e11b3 --- tools/pretty_tox_py3.sh | 12 ------------ tox.ini | 5 ----- 2 files changed, 17 deletions(-) delete mode 100755 tools/pretty_tox_py3.sh diff --git a/tools/pretty_tox_py3.sh b/tools/pretty_tox_py3.sh deleted file mode 100755 index 01b67a8d97..0000000000 --- a/tools/pretty_tox_py3.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bash - -set -o pipefail - -TESTRARGS=$1 -python setup.py testr --testr-args="--subunit $TESTRARGS" | subunit-trace -f -retval=$? -# NOTE(mtreinish) The pipe above would eat the slowest display from pbr's testr -# wrapper so just manually print the slowest tests. -echo -e "\nSlowest Tests:\n" -testr slowest -exit $retval diff --git a/tox.ini b/tox.ini index 6e2adb5d8b..eee1e4bd8d 100644 --- a/tox.ini +++ b/tox.ini @@ -17,11 +17,6 @@ whitelist_externals = find passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY PBR_VERSION -[testenv:py34] -commands = - find keystone -type f -name "*.pyc" -delete - bash tools/pretty_tox_py3.sh - [testenv:legacy_drivers] deps = -r{toxinidir}/test-requirements.txt nose