tests/run-tests.sh @ 7269f85f8278

Update the publish script to add a pull first.
author Steve Losh <steve@stevelosh.com>
date Wed, 09 Mar 2011 19:35:17 -0500
parents dbd4f2ec3861
children (none)
#!/usr/bin/env bash

set -e

if [[ $# -eq 0 ]]
then
    TESTS="`ls *.vim | tr "\n" ' '`"
else
    IFS=' '
    TESTS="$*"
fi

vim -u vimrc_test -c ":UTRun $TESTS"