From dd5808e5353dec3f6e4fc0e75cb140ff6b42bad7 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 13 May 2022 18:19:25 +0800 Subject: [PATCH] Edit CONTRIBUTING --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6013e593..76a51be9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -56,15 +56,15 @@ Next, if you want to run integration tests on a live database. We recommand usin Running integration tests on a live database: - SQLite ```sh - DATABASE_URL="sqlite::memory:" cargo t --all --features default,sqlx-sqlite,runtime-async-std-native-tls + DATABASE_URL="sqlite::memory:" cargo test --all --features default,sqlx-sqlite,runtime-async-std-native-tls ``` - MySQL / MariaDB ```sh - DATABASE_URL="mysql://root:root@localhost" cargo t --all --features default,sqlx-mysql,runtime-async-std-rustls + DATABASE_URL="mysql://root:root@localhost" cargo test --all --features default,sqlx-mysql,runtime-async-std-rustls ``` - PostgreSQL ```sh - DATABASE_URL="postgres://root:root@localhost" cargo t --all --features default,sqlx-postgres,runtime-async-std-native-tls + DATABASE_URL="postgres://root:root@localhost" cargo test --all --features default,sqlx-postgres,runtime-async-std-native-tls ``` ### Running `sea-orm-cli` from source code