diff options
Diffstat (limited to 'testing/ensure-pysqlcipher-has-usleep.sh')
-rwxr-xr-x | testing/ensure-pysqlcipher-has-usleep.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/ensure-pysqlcipher-has-usleep.sh b/testing/ensure-pysqlcipher-has-usleep.sh deleted file mode 100755 index d3d93d86..00000000 --- a/testing/ensure-pysqlcipher-has-usleep.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/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) |