Skip to content

fix tests and lint

fix tests and lint #74

Workflow file for this run

---
name: Tests
on: [push, pull_request]
jobs:
pytest:
name: pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install requirements
run: pip install -r requirements.txt
- name: Install test requirements
run: pip install -r test-requirements.txt
- name: Install pytest
run: pip install pytest
- name: Run pytest
run: pytest