Skip to content

Commit

Permalink
ci: Enable the wasm-wasi-component tests
Browse files Browse the repository at this point in the history
We now have tests for this module via commit cad6aed ("Tests: initial
"wasm-wasi-component" test").

Signed-off-by: Andrew Clayton <[email protected]>
  • Loading branch information
ac000 committed Aug 26, 2024
1 parent 16a3423 commit 27cb009
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,18 +347,15 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3'
if: steps.metadata.outputs.module != 'wasm' &&
steps.metadata.outputs.module != 'wasm-wasi-component'
if: steps.metadata.outputs.module != 'wasm'

- name: Install pytest
run: |
sudo -H pip install pytest
if: steps.metadata.outputs.module != 'wasm' &&
steps.metadata.outputs.module != 'wasm-wasi-component'
if: steps.metadata.outputs.module != 'wasm'

- name: Run ${{ steps.metadata.outputs.module }} tests
run: |
sudo -E pytest --print-log ${{ steps.metadata.outputs.testpath }}
# Skip pytest if wasm build, as there are no tests yet
if: steps.metadata.outputs.module != 'wasm' &&
steps.metadata.outputs.module != 'wasm-wasi-component'
if: steps.metadata.outputs.module != 'wasm'

0 comments on commit 27cb009

Please sign in to comment.