From 5de1f1b26b452739e9bb9084814275a7eba3ec2f Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 2 Jul 2017 09:19:02 -0700 Subject: [PATCH] only test master and maintenance branches avoids duplicate work for internal prs --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index ebaf8463..efe88556 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ sudo: false language: python + python: - "2.6" - "2.7" @@ -8,10 +9,18 @@ python: - "3.4" - "3.5" - "3.6" + install: - pip install tox + script: - tox -e py + +branches: + only: + - master + - /^.*-maintenance$/ + notifications: email: false irc: -- 2.47.2