Skip to content

Fix unit tests

Fix unit tests #48

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-20.04
name: test
steps:
- uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.8.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Run tests
run: poetry run python -m unittest -v test/test*.py