vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 8eb94ed2563c3b2967b43636b8eb8996f8c79295
parent f5f85f61620842e5b6e3c0a1026479351d581fe5
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Fri,  4 Nov 2016 08:28:14 +0100

test/vim: do not run these tests in continuous integration environment

In contrast to the local enivronment they don't seem to work reliably.

Diffstat:
Mvim/test.sh | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git 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"