Skip to content

Dev 1.2.6

Dev 1.2.6 #131

Workflow file for this run

name: Pytest
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
include:
- os: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: pip install -e .[test]
- name: Run unit tests
run: python -m pytest -m "not slow" --cov=compressai -s tests/