Skip to content

Remove unittest.makeSuite, gone from Python 3.13 #27

Remove unittest.makeSuite, gone from Python 3.13

Remove unittest.makeSuite, gone from Python 3.13 #27

Workflow file for this run

name: Test
on: [push, pull_request]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", 2.7]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }} / ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
pip install pytest pytest-timeout
- name: Run tests
run: pytest --timeout 60 -v