Skip to content

Commit 18f9e13

Browse files
test: run kat tests after pytest completes
Signed-off-by: Mark S <[email protected]>
1 parent 81fd465 commit 18f9e13

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,33 @@ jobs:
8282
uses: ./.github/actions/collect-logs
8383
if: always()
8484

85+
kat-tests: ######################################################################
86+
runs-on: ubuntu-latest
87+
name: Run KAT Tests
88+
needs:
89+
- pytest
90+
steps:
91+
- name: Checkout Repo
92+
uses: actions/checkout@v4
93+
with:
94+
fetch-depth: 0
95+
- name: Install Deps
96+
uses: ./.github/actions/setup-deps
97+
with:
98+
install-golang: "false"
99+
- name: Create Python Virtual Env
100+
shell: bash
101+
run: >-
102+
make python-virtual-environment
103+
- name: Run KAT Tests
104+
env:
105+
PYTEST_ARGS: --no-cov
106+
run: |
107+
make pytest-kat-envoy3
108+
- name: Collect Job Logs
109+
uses: ./.github/actions/collect-logs
110+
if: always()
111+
85112
build: #######################################################################
86113
name: Build w/ GoReleaser
87114
needs:

0 commit comments

Comments
 (0)