From 7eace8b573a4df0ce97a7a20198d36b5bf7dc970 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Mon, 17 Jun 2019 13:59:23 +0000 Subject: [PATCH] Allow running lint concurrently with Travis CI build Before this PR the Travis Ci build was set in a way such that lint runs before any other tests (and fails immediately). Think it makes sense to allow running lint concurrently with other tests, so that people could fix all build failures (including lint) in one update. Signed-off-by: Yong Tang --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd954caa8..b6e75ee06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,12 +21,11 @@ install: - export TENSORFLOW_INSTALL="$(python setup.py --package-version)" stages: -- lint - release jobs: include: - - stage: lint + - stage: release name: "Lint" script: - bash -x -e .travis/lint.bazel.sh