Skip to content

add visual assert to tests #79

add visual assert to tests

add visual assert to tests #79

name: Check Python Version Compatibility
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
- name: Test with pytest
run: |
pytest tests/pdf_tests/layout_element_tests/test_smoke.py