Skip to content

load image from document dir as last resort #999 #1

load image from document dir as last resort #999

load image from document dir as last resort #999 #1

Workflow file for this run

name: Test without C-extensions
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', 'pypy-3.9']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Excluding Cython to test the pure Python version.
python -m pip install setuptools wheel pytest pyparsing fonttools numpy Pillow
- name: Install without C-extensions
run: |
python setup.py install
- name: Test without C-extensions
run: |
python -m pytest tests integration_tests