From dd60cc020efac553e7f5636039dd7fe7558e694e Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 18 Dec 2015 00:19:14 -0800 Subject: [PATCH] Only validate requirements_all.txt on Python 3.5 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 66d002f9a40..208084bf95b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,8 @@ python: - 3.4 - 3.5 install: - - python3 setup.py -q develop - - script/gen_requirements_all.py validate + # Validate requirements_all.txt on Python 3.5 + - if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then python3 setup.py -q develop; script/gen_requirements_all.py validate; fi - script/bootstrap_server script: - script/cibuild