From 18f9e1353424b9ada651090882178f436e608f78 Mon Sep 17 00:00:00 2001 From: Mark S Date: Mon, 30 Sep 2024 13:26:49 -0400 Subject: [PATCH] test: run kat tests after pytest completes Signed-off-by: Mark S --- .github/workflows/ci.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3567d2d8a8..084728c48e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -82,6 +82,33 @@ jobs: uses: ./.github/actions/collect-logs if: always() + kat-tests: ###################################################################### + runs-on: ubuntu-latest + name: Run KAT Tests + needs: + - pytest + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install Deps + uses: ./.github/actions/setup-deps + with: + install-golang: "false" + - name: Create Python Virtual Env + shell: bash + run: >- + make python-virtual-environment + - name: Run KAT Tests + env: + PYTEST_ARGS: --no-cov + run: | + make pytest-kat-envoy3 + - name: Collect Job Logs + uses: ./.github/actions/collect-logs + if: always() + build: ####################################################################### name: Build w/ GoReleaser needs: