diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-11-04 08:28:14 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-11-04 08:28:14 +0100 |
| commit | e71e52ac942481d134632e1a512136053c373b8f (patch) | |
| tree | a70c919616173a90b461cacbf770b19983e43fee | |
| parent | d5075cfdb093af473dea17f4d492da4afb105b13 (diff) | |
| download | vis-e71e52ac942481d134632e1a512136053c373b8f.tar.gz vis-e71e52ac942481d134632e1a512136053c373b8f.tar.xz | |
test/vim: do not run these tests in continuous integration environment
In contrast to the local enivronment they don't seem to work reliably.
| -rwxr-xr-x | vim/test.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vim/test.sh b/vim/test.sh index e8b02c2..d353e00 100755 --- a/vim/test.sh +++ b/vim/test.sh @@ -1,5 +1,10 @@ #!/bin/sh +[ ! -z "$CI" ] && { + echo "Skipping tests in CI environment" + exit 0 +} + [ -z "$VIS" ] && VIS="../../vis" [ -z "$VIM" ] && VIM="vim" |
