Skip to content

Fix tests when only 4 were broken. Now 17/17 locally #13

Fix tests when only 4 were broken. Now 17/17 locally

Fix tests when only 4 were broken. Now 17/17 locally #13

Workflow file for this run

name: Python Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit install
pre-commit run --all-files
- name: Run tests
run: |
pytest tests/ -v