aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwinsvega <winsvega@mail.ru>2017-06-13 05:53:58 +0800
committerGitHub <noreply@github.com>2017-06-13 05:53:58 +0800
commitdcbc5e771e9e732ce369752707939649352965bd (patch)
tree05b2b66311461b5c48023f56630922105fbf6a4f
parentd44414332cee216e505cd52cb6f26783a4ac5b62 (diff)
parent64d2f389f6196859b79e95887ef6326aea09af5d (diff)
downloaddexon-tests-dcbc5e771e9e732ce369752707939649352965bd.tar.gz
dexon-tests-dcbc5e771e9e732ce369752707939649352965bd.tar.zst
dexon-tests-dcbc5e771e9e732ce369752707939649352965bd.zip
Merge pull request #178 from maaktweluit/issue#169
#169 Update travis.yml with Filler exclude
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index e35fba889..dbced1cd9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,6 @@ python: 2.7
sudo: false
script:
# won't fail, but print problems
-- find . -name "*.json" -exec echo {} \; -exec python -mjson.tool {} /dev/null \; 2>&1 |grep --before 1 "Expecting" | cat
+- find . -name "*.json" -not -name "*Filler.json" -exec echo {} \; -exec python -mjson.tool {} /dev/null \; 2>&1 | grep -v -B 1 "^\./" | cat
# will fail, if linting fails
-- find . -name "*.json" -print0 | xargs -I file -n1 -0 python -mjson.tool file /dev/null
+- find . -name "*.json" -not -name "*Filler.json" -print0 | xargs -I file -n1 -0 python -mjson.tool file /dev/null