Skip to content

add tests, need to patch/scope mocks #25

add tests, need to patch/scope mocks

add tests, need to patch/scope mocks #25

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .[dev]
- name: Test with pytest via coverage
run: |
coverage run -m pytest
coverage report -m