From 6d62aec6b1e288ed2a646ddb004f645ea02eb4ac Mon Sep 17 00:00:00 2001 From: Jacob Powers Date: Tue, 9 Jun 2020 18:31:49 -0700 Subject: [PATCH] remove irrelevant test from pgx --- .travis.yml | 1 - travis/script.bash | 8 +------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4389d5da..d6762735 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,6 @@ env: - PGX_TEST_DATABASE=postgres://pgx_md5:secret@127.0.0.1/pgx_test matrix: - - CRATEVERSION=2.1 PGX_TEST_CRATEDB_CONN_STRING="host=127.0.0.1 port=6543 user=pgx database=pgx_test" - PGVERSION=12 - PGVERSION=11 - PGVERSION=10 diff --git a/travis/script.bash b/travis/script.bash index 6ee46ac3..1dfa2c20 100755 --- a/travis/script.bash +++ b/travis/script.bash @@ -2,10 +2,4 @@ # source: https://github.com/jackc/pgx/blob/master/travis/script.bash set -eux -if [ "${PGVERSION-}" != "" ] -then - go test -v -race ./... -elif [ "${CRATEVERSION-}" != "" ] -then - go test -v -race -run 'TestCrateDBConnect' -fi +go test -v -race ./...