From 9b72ca161626a3ed9ff658675da3a563c42e53c6 Mon Sep 17 00:00:00 2001 From: Daniel Harvey Date: Mon, 2 Dec 2024 10:33:58 +0000 Subject: [PATCH] Allow no tests for openapi crate --- .github/workflows/schema-definitions.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/schema-definitions.yaml b/.github/workflows/schema-definitions.yaml index e1c2aac5b..80dca11a4 100644 --- a/.github/workflows/schema-definitions.yaml +++ b/.github/workflows/schema-definitions.yaml @@ -24,5 +24,7 @@ jobs: shared-key: "build" # share the cache across jobs save-if: false + # currently there are no tests in here, leaving to ensure any that are + # added are run - name: OpenAPI Definitions - run: cargo nextest run --no-fail-fast --release --filter-expr='package(openapi-generator)' + run: cargo nextest run --no-tests=pass --no-fail-fast --release --filter-expr='package(openapi-generator)'