Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

[pre-commit.ci] pre-commit autoupdate #45

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #45

Workflow file for this run

name: Pytests
on:
pull_request:
branches: [ "*" ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
pip install -e .
- name: Test with pytest
run: |
coverage run -m pytest
coverage report -m