From 9b1c2fca28a250c2a54ad72502133b91fd3d6f05 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 20 Jan 2014 12:24:21 -0600 Subject: experiment to disable duplicate cc test runs on osx and speed up travis --- .travis/run.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis/run.sh b/.travis/run.sh index 4c01d67a..76d0445f 100755 --- a/.travis/run.sh +++ b/.travis/run.sh @@ -10,7 +10,12 @@ if [[ "$(uname -s)" == "Darwin" ]]; then export ARCHFLAGS="-arch x86_64" export LDFLAGS="-L/usr/local/opt/openssl/lib" export CFLAGS="-I/usr/local/opt/openssl/include" + # The Travis OS X jobs are run for two versions + # of OpenSSL, but we only need to run the + # CommonCrypto backend tests once. Exclude + # CommonCrypto when we test against brew OpenSSL + export TOX_FLAGS="-- --backend=openssl" fi fi source ~/.venv/bin/activate -tox -e $TOX_ENV +tox -e $TOX_ENV $TOX_FLAGS -- cgit v1.2.3 From 2c511bcc8a37cc68f275e53c1cb75f350067bb3a Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 20 Jan 2014 12:36:58 -0600 Subject: move some dashes around :) --- .travis/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/run.sh b/.travis/run.sh index 76d0445f..6739c886 100755 --- a/.travis/run.sh +++ b/.travis/run.sh @@ -14,8 +14,8 @@ if [[ "$(uname -s)" == "Darwin" ]]; then # of OpenSSL, but we only need to run the # CommonCrypto backend tests once. Exclude # CommonCrypto when we test against brew OpenSSL - export TOX_FLAGS="-- --backend=openssl" + export TOX_FLAGS="--backend=openssl" fi fi source ~/.venv/bin/activate -tox -e $TOX_ENV $TOX_FLAGS +tox -e $TOX_ENV -- $TOX_FLAGS -- cgit v1.2.3