From 3b571049975966567189e1f69f7bfad84984b718 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 18 May 2018 14:04:20 +1000 Subject: [PATCH] travis: Run initial tests. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index aac1b2fc..6d9587e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,3 +20,4 @@ script: # Check for lines longer than 100 chars. # There are 3 lines that must be longer than 100 chars. - if (("$(grep '.\{101\}' neofetch | wc -l)" > 3)); then (exit 1); else (exit 0); fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd tests; ./test_misc.sh; fi