jenkins-bot has submitted this change and it was merged.
Change subject: Only use apt-get for PYSETUP_TEST_EXTRAS ......................................................................
Only use apt-get for PYSETUP_TEST_EXTRAS
Saves ~10s per build
Change-Id: Ie9585a26a9e94f6d1014a6cdbcb74faf4a56758e --- M .travis.yml 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: John Vandenberg: Looks good to me, but someone else must approve XZise: Looks good to me, approved jenkins-bot: Verified
diff --git a/.travis.yml b/.travis.yml index fc2a251..addcc33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,8 @@ - '2.6'
before_install: - - sudo apt-get update -qq - - sudo apt-get install -y liblua5.1-dev + - if [[ "$PYSETUP_TEST_EXTRAS" == "1" ]]; then sudo apt-get update -qq; fi + - if [[ "$PYSETUP_TEST_EXTRAS" == "1" ]]; then sudo apt-get install -y liblua5.1-dev; fi
install: - if [[ "$SITE_ONLY" == '1' ]]; then export USE_NOSE=1; fi