Skip to content

try to fix test

try to fix test #3

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
fail-fast: false
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements (Python 3)
run: pip install -r requirements-dev.txt
- name: Run tests
run: pytest --disable-warnings tests