From e67f3c95de61ec441292f813165900473f5196bd Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 10 Dec 2018 16:17:11 +0100 Subject: [PATCH] if [[ $TRAVIS_PYTHON_VERSION != nightly ]]; then flake8 .; fi --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7fd2187..58dd54a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ install: - if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then pip install sphinx; fi - pip install . script: - - flake8 . + - if [[ $TRAVIS_PYTHON_VERSION != nightly ]]; then flake8 .; fi - if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then doc8 $(git ls-files '*.rst'); fi - yamllint --strict $(git ls-files '*.yaml' '*.yml') - coverage run --source=yamllint setup.py test