honeysql/run-tests.sh
Sean Corfield 3a4dc74765 Add multi-version (1.7, 1.8, 1.9, 1.10)
Make Travis run all of those.

Also remove O/S update for libstdc++6 to see if Lumo version pinning is sufficient.
2018-06-27 11:09:23 -07:00

13 lines
283 B
Bash
Executable file

#!/bin/sh
#
# Assumes node.js/npm and lumo-cljs are installed!
# See .travis.yml for details of the test environment.
#
rm -rf test/readme.clj
if test "$1" = "all"
then
clj_test="test-all"
else
clj_test="test"
fi
lein do clean, check, eastwood, $clj_test, tach lumo, test-readme