Skip to content

Commit

Permalink
CI-unixish.yml: run addons Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Dec 3, 2024
1 parent 38315c5 commit 625e476
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/CI-unixish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,21 @@ jobs:
../../cppcheck --dump naming_test.cpp
python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.cpp.dump
- name: test addons (Python)
if: matrix.os != 'ubuntu-22.04'
run: |
python3 -m pytest -Werror --strict-markers -vv addons/test
env:
PYTHONPATH: ./addons

# we cannot specify -Werror since xml/etree/ElementTree.py in Python 3.10 contains an unclosed file
- name: test addons (Python)
if: matrix.os == 'ubuntu-22.04'
run: |
python3 -m pytest --strict-markers -vv addons/test
env:
PYTHONPATH: ./addons

- name: Build democlient
if: matrix.os == 'ubuntu-22.04'
run: |
Expand Down

0 comments on commit 625e476

Please sign in to comment.