bugfix #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytests | |
on: | |
repository_dispatch: | |
types: [pytests] | |
push: | |
branches: | |
- dev | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -y libegl1-mesa | |
# sudo apt-get install -y xvfb # for tests with GUI | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install . | |
- name: Test with pytest | |
# if one in the future tries to implement tests with GUI | |
# uses: coactions/setup-xvfb@v1 | |
# with: | |
run: pytest ./tests/test_wo_gui.py |