2
0

travis: add connection test coverage for cratedb

This commit is contained in:
Felix Geisendörfer
2017-11-12 15:21:17 +01:00
parent 806a22a5ac
commit 1bebe56697
7 changed files with 96 additions and 32 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -eux
if [ "${PGVERSION-}" != "" ]
then
go test -v -race ./...
elif [ "${CRATEVERSION-}" != "" ]
then
go test -v -race -run 'TestCrateDBConnect'
fi