2
0

Use native PostgreSQL package

Also remove travis integration.
This commit is contained in:
Jack Christensen
2021-01-30 16:22:38 -06:00
parent 94608a2482
commit eb32285906
5 changed files with 21 additions and 89 deletions
Executable
+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