mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
12 lines
333 B
Bash
Executable File
12 lines
333 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Core
|
|
cargo test -p sqlx-core --all-features
|
|
|
|
# Postgres
|
|
env DATABASE_URL="postgres://" cargo test -p sqlx --no-default-features --features 'postgres macros uuid chrono'
|
|
|
|
# MySQL (requires sqlx database)
|
|
env DATABASE_URL="mysql:///sqlx" cargo test -p sqlx --no-default-features --features 'mysql chrono'
|