From ebd7979e5b2f4f9897d0f3be96eebac1476a5c6c Mon Sep 17 00:00:00 2001 From: Colin Carroll Date: Tue, 1 Aug 2017 08:27:42 -0400 Subject: [PATCH] Run lint before tests, so travis fails faster --- scripts/test.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index b56c3b1096..da3ffb6667 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -2,8 +2,9 @@ set -e -THEANO_FLAGS="floatX=${FLOATX},gcc.cxxflags='-march=core2'" pytest -v --cov=pymc3 "$@" - if [[ "$RUN_PYLINT" == "true" ]]; then . ./scripts/lint.sh fi + +THEANO_FLAGS="floatX=${FLOATX},gcc.cxxflags='-march=core2'" pytest -v --cov=pymc3 "$@" +