summaryrefslogtreecommitdiffstats
path: root/testsuite/before_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/before_install.sh')
-rwxr-xr-xtestsuite/before_install.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/before_install.sh b/testsuite/before_install.sh
deleted file mode 100755
index 2c80036cd..000000000
--- a/testsuite/before_install.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash -ex
-
-# before_install script for Travis-CI
-
-PYVER=$(python -c 'import sys;print(".".join(str(v) for v in sys.version_info[0:2]))')
-
-sudo apt-get update -qq
-sudo apt-get install -qq swig libxml2-utils
-if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
- if [[ ${PYVER:0:1} == "2" ]]; then
- sudo apt-get install -y yum libaugeas0 augeas-lenses libacl1-dev \
- libssl-dev
- fi
-fi