From fd26551c17ed9e974650eb33a122d05955b8404c Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Fri, 15 Jun 2018 15:17:32 -0400 Subject: [PATCH] _not available_ in the build environment! --- .circleci/bootstrap-test-environment.sh | 2 +- .circleci/run-tests.sh | 2 +- .circleci/setup-virtualenv.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/bootstrap-test-environment.sh b/.circleci/bootstrap-test-environment.sh index 2e49b12a5..80290961a 100755 --- a/.circleci/bootstrap-test-environment.sh +++ b/.circleci/bootstrap-test-environment.sh @@ -1,4 +1,4 @@ -#!/bin/bash -eo pipefail +#!/bin/bash -e PROJECT=$1 shift diff --git a/.circleci/run-tests.sh b/.circleci/run-tests.sh index 85d740069..6b6329e8c 100755 --- a/.circleci/run-tests.sh +++ b/.circleci/run-tests.sh @@ -1,4 +1,4 @@ -#!/bin/bash -eo pipefail +#!/bin/bash -e # Run the test suite as a non-root user. This is the expected usage some # small areas of the test suite assume non-root privileges (such as unreadable diff --git a/.circleci/setup-virtualenv.sh b/.circleci/setup-virtualenv.sh index 68af79d4a..b08272d0e 100755 --- a/.circleci/setup-virtualenv.sh +++ b/.circleci/setup-virtualenv.sh @@ -1,4 +1,4 @@ -#!/bin/bash -eo pipefail +#!/bin/bash -e # Set up the virtualenv as a non-root user so we can run the test suite as a # non-root user. See below.