From 2a34381a8d5d432f6ff50227c13d7b4f4fc943e3 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Fri, 15 Oct 2021 16:12:55 +0800 Subject: [PATCH] Speed up test suite --- .github/workflows/rust.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c37cac7c..28e73ad6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -59,6 +59,7 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-sqlite,runtime-${{ matrix.runtime }}-${{ matrix.tls }} --no-run @@ -91,6 +92,7 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-mysql,runtime-${{ matrix.runtime }}-${{ matrix.tls }} --no-run @@ -123,6 +125,7 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-postgres,runtime-${{ matrix.runtime }}-${{ matrix.tls }} --no-run @@ -247,6 +250,7 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-sqlite,runtime-${{ matrix.runtime }}-${{ matrix.tls }} mysql: @@ -299,6 +303,7 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-mysql,runtime-${{ matrix.runtime }}-${{ matrix.tls }} mariadb: @@ -351,6 +356,7 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-mysql,runtime-${{ matrix.runtime }}-${{ matrix.tls }} postgres: @@ -400,4 +406,5 @@ jobs: with: command: test args: > + --test '*' --features default,sqlx-postgres,runtime-${{ matrix.runtime }}-${{ matrix.tls }}