babashka/script/test

15 lines
350 B
Text
Raw Normal View History

2019-08-09 12:51:42 +00:00
#!/usr/bin/env bash
set -eo pipefail
2019-08-18 06:40:28 +00:00
export BABASHKA_PRELOADS='(defn __bb__foo [] "foo") (defn __bb__bar [] "bar")'
2019-08-09 12:51:42 +00:00
2019-08-13 22:19:15 +00:00
if [ "$BABASHKA_TEST_ENV" = "native" ]; then
2019-08-09 12:51:42 +00:00
lein test
else
echo "Testing with Clojure 1.9.0"
lein with-profiles +clojure-1.9.0 test
echo "Testing with Clojure 1.10.1"
lein with-profiles +clojure-1.10.1 test
fi