Skip to content

Commit

Permalink
test: run kat tests after pytest completes
Browse files Browse the repository at this point in the history
Signed-off-by: Mark S <[email protected]>
  • Loading branch information
the-wondersmith committed Oct 1, 2024
1 parent 81fd465 commit a66698f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,39 @@ 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:
- gotest
- pytest
- kat-tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand Down

0 comments on commit a66698f

Please sign in to comment.