From c2e5bf22be25fc20437ad83be3d21897645f9651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Fern=C3=A1ndez?= Date: Fri, 26 Jan 2024 11:08:58 +0100 Subject: [PATCH] test(se, all): Improve test output (#4674) * run schema engine tests with default log level * omit status output of skipped tests --- .config/nextest.toml | 2 +- .github/workflows/test-schema-engine.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index d07809df94c3..f73272d4ebde 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -38,7 +38,7 @@ threads-required = 1 # failed and retried tests. # # Can be overridden through the `--status-level` flag. -status-level = "all" +status-level = "pass" # Similar to status-level, show these test statuses at the end of the run. final-status-level = "flaky" diff --git a/.github/workflows/test-schema-engine.yml b/.github/workflows/test-schema-engine.yml index dd28f40d2534..baa8772e9c2e 100644 --- a/.github/workflows/test-schema-engine.yml +++ b/.github/workflows/test-schema-engine.yml @@ -141,7 +141,6 @@ jobs: env: CLICOLOR_FORCE: 1 TEST_DATABASE_URL: ${{ matrix.database.url }} - RUST_LOG: debug - run: cargo nextest run -p schema-engine-cli if: ${{ !matrix.database.single_threaded }}