From a4db8128fa6374d9a032ae41e192bab2cd3c7af4 Mon Sep 17 00:00:00 2001 From: Tim Saucer Date: Sat, 25 Jan 2025 15:22:26 -0500 Subject: [PATCH] Add integration-tests feature to CI run --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f8a61bac4e2a..0bd35fdff4fc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -253,7 +253,7 @@ jobs: rust-version: stable - name: Run doctests run: | - cargo test --profile ci --doc --features avro,json + cargo test --profile ci --doc --features avro,json,integration-tests cd datafusion-cli cargo test --profile ci --doc --all-features - name: Verify Working Directory Clean @@ -417,7 +417,7 @@ jobs: - name: Run tests (excluding doctests) shell: bash run: | - cargo test --profile ci --lib --tests --bins --features avro,json,backtrace + cargo test --profile ci --lib --tests --bins --features avro,json,backtrace,integration-tests cd datafusion-cli cargo test --profile ci --lib --tests --bins --all-features