From f08891fce7c4de1c7dbf0d6054ba1bccafa5e296 Mon Sep 17 00:00:00 2001 From: Adi Roiban Date: Wed, 13 Jul 2016 01:37:51 +0100 Subject: [PATCH] See if we really need the run script. --- .travis.yml | 2 +- .travis/run.sh | 17 ----------------- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100755 .travis/run.sh diff --git a/.travis.yml b/.travis.yml index 81ac578ca44..01237336226 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,4 +47,4 @@ before_script: # Run tox from the created virtualenv. script: - - ./.travis/run.sh + - tox diff --git a/.travis/run.sh b/.travis/run.sh deleted file mode 100755 index 51491c02760..00000000000 --- a/.travis/run.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -# -# Copied from -# https://github.com/pyca/cryptography/blob/master/.travis/run.sh -# -set -e -set -x - -if [[ "$(uname -s)" == "Darwin" ]]; then - # initialize our pyenv - PYENV_ROOT="$HOME/.pyenv" - PATH="$PYENV_ROOT/bin:$PATH" - eval "$(pyenv init -)" - source ~/.venv/bin/activate -fi - -tox $TOX_FLAGS