Skip to content

Migrate to pytest and drop support for Python 2 #65

Migrate to pytest and drop support for Python 2

Migrate to pytest and drop support for Python 2 #65

Workflow file for this run

name: Run unit tests and lint
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py