From b289e6caa81fd3c6c8b6a6070feee6b1b0965122 Mon Sep 17 00:00:00 2001 From: drebs Date: Fri, 7 Jul 2017 17:41:02 -0300 Subject: [benchmarks] avoid reinstalling pysqlcipher if unneeded pysqlcipher just has to be reinstalled for benchmark tests if current installed version fails the HAVE_USLEEP flag test. This commit moves the code for checking and reinstalling to a script and bypasses the reinstallation when it is unneeded. --- testing/ensure-pysqlcipher-has-usleep.sh | 13 +++++++++++++ testing/tox.ini | 8 +++----- 2 files changed, 16 insertions(+), 5 deletions(-) create mode 100755 testing/ensure-pysqlcipher-has-usleep.sh (limited to 'testing') diff --git a/testing/ensure-pysqlcipher-has-usleep.sh b/testing/ensure-pysqlcipher-has-usleep.sh new file mode 100755 index 00000000..d3d93d86 --- /dev/null +++ b/testing/ensure-pysqlcipher-has-usleep.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +# make sure that the current installed version of pysqlcipher has the +# HAVE_USLEEP flag set so we don't have problems with concurrent db access. + +set -e + +install_bundled_pysqlcipher() { + pip uninstall -y pysqlcipher + pip install --install-option="--bundled" pysqlcipher +} + +./check-pysqlcipher.py || (install_bundled_pysqlcipher && ./check-pysqlcipher.py) diff --git a/testing/tox.ini b/testing/tox.ini index aba69cf6..9aaa1ae3 100644 --- a/testing/tox.ini +++ b/testing/tox.ini @@ -73,11 +73,9 @@ deps = elasticsearch certifi commands = -# use a bundled version of pysqlcipher to ensure HAVE_USLEEP is set and we -# don't have problems with concurrent db access. - pip install -I --install-option="--bundled" pysqlcipher - ./check-pysqlcipher.py -# and only then run benchmark +# we must make sure that installed pysqlcipher was built with the HAVE_USLEEP +# flag, or we might have problems with concurrent db access. + ./ensure-pysqlcipher-has-usleep.sh py.test --benchmark-only {posargs} passenv = HOST_HOSTNAME -- cgit v1.2.3