Skip to content

Code quality improvements and bug fixes #5

Code quality improvements and bug fixes

Code quality improvements and bug fixes #5

Workflow file for this run

name: Python Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install Xvfb and dependencies
run: |
sudo apt-get update
sudo apt-get install -y xvfb libegl1-mesa
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests
run: |
Xvfb :99 -screen 0 1920x1080x24 &
sleep 3 # Give Xvfb a moment to start
export DISPLAY=:99
poetry run pytest -vvv