summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis-before-install.sh7
-rwxr-xr-xscripts/travis-build.sh4
2 files changed, 1 insertions, 10 deletions
diff --git a/scripts/travis-before-install.sh b/scripts/travis-before-install.sh
index fc003f5a..f5a430b2 100755
--- a/scripts/travis-before-install.sh
+++ b/scripts/travis-before-install.sh
@@ -15,11 +15,6 @@
# limitations under the License.
#
-if [[ ${TRAVIS_OS_NAME} = "linux" ]]; then
- pip install --user flake8
-elif [[ ${TRAVIS_OS_NAME} = "osx" ]]; then
+if [[ ${TRAVIS_OS_NAME} = "osx" ]]; then
brew update
-else
- echo "unknown TRAVIS_OS_NAME: ${TRAVIS_OS_NAME}"
- exit 1
fi
diff --git a/scripts/travis-build.sh b/scripts/travis-build.sh
index 90bbdc01..8e49667d 100755
--- a/scripts/travis-build.sh
+++ b/scripts/travis-build.sh
@@ -21,10 +21,6 @@ set -o errexit
SCRIPT_DIR="$(cd "$(dirname "$0")"; pwd -P)"
source "${SCRIPT_DIR}/travis-common.sh"
-if [[ ${TRAVIS_OS_NAME} = "linux" ]]; then
- flake8
-fi
-
if [[ ${COMPILER} = "clang" && -z ${SANITIZER:-} ]]; then
# Test building without GTest submodule
make clang-debug-no-tests