mirror of
https://github.com/jackc/pgx.git
synced 2025-04-27 21:25:53 +00:00
11 lines
176 B
Bash
Executable File
11 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
if [ "${PGVERSION-}" != "" ]
|
|
then
|
|
go test -v -race ./...
|
|
elif [ "${CRATEVERSION-}" != "" ]
|
|
then
|
|
go test -v -race -run 'TestCrateDBConnect'
|
|
fi
|