From fba075ec02874916d2ccf42c16801cd7b7e586b3 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Mon, 30 Dec 2019 02:09:53 -0800 Subject: [PATCH] Turn on more tests in test.sh --- test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.sh b/test.sh index 76535275..48a86abb 100755 --- a/test.sh +++ b/test.sh @@ -5,7 +5,7 @@ set -e cargo test -p sqlx-core --all-features # Postgres -env DATABASE_URL="postgres://" cargo test -p sqlx --no-default-features --features 'postgres uuid chrono' +env DATABASE_URL="postgres://" cargo test -p sqlx --no-default-features --features 'postgres macros uuid chrono' -# MySQL -env DATABASE_URL="mysql:///sqlx" cargo test -p sqlx --no-default-features --features 'mysql' +# MySQL (requires sqlx database) +env DATABASE_URL="mysql:///sqlx" cargo test -p sqlx --no-default-features --features 'mysql chrono'