diff --git a/script/cibuild b/script/cibuild index bd8ac963429..778cbe0db52 100755 --- a/script/cibuild +++ b/script/cibuild @@ -5,6 +5,12 @@ cd "$(dirname "$0")/.." +if [ "$TRAVIS_PYTHON_VERSION" != "3.4" ]; then + NO_LINT=1 +fi + +export NO_LINT + script/test coverage STATUS=$? diff --git a/script/test b/script/test index d407f57a338..25873492001 100755 --- a/script/test +++ b/script/test @@ -5,9 +5,12 @@ cd "$(dirname "$0")/.." -script/lint - -LINT_STATUS=$? +if [ "$NO_LINT" = "1" ]; then + LINT_STATUS=0 +else + script/lint + LINT_STATUS=$? +fi echo "Running tests..."