Skip to content

Unittests for c43d537720e8d09a14e8abfb43eeba7e878e0a8c #324

Unittests for c43d537720e8d09a14e8abfb43eeba7e878e0a8c

Unittests for c43d537720e8d09a14e8abfb43eeba7e878e0a8c #324

Workflow file for this run

name: Unittests
run-name: Unittests for ${{ github.sha }}
on: [push]
jobs:
tests:
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version for testing purposes
run: python -c "import sys; print(sys.version)"
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v4
with:
path: "requirements.txt"
- name: Install additional OS dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install freeglut3 freeglut3-dev
- name: Run unittests with pytest
run: python -m pytest -v
working-directory: ./UnitTests