Skip to content

Bump pytest from 7.4.0 to 7.4.1 #372

Bump pytest from 7.4.0 to 7.4.1

Bump pytest from 7.4.0 to 7.4.1 #372

Workflow file for this run

name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Install Dependencies
run: |
python -m poetry install --no-interaction
python ./tests/download_fonts.py
- name: Update Dependencies
# 3.7 requires updating dependencies to install `importlib_metadata`
# for `pytype` with the lock file for 3.8+.
if: matrix.python-version == 3.7
run: python -m poetry update
- name: Run Tests
run: python -m poetry run pytest -v tests/