Skip to content

optional arg so tests pass #68

optional arg so tests pass

optional arg so tests pass #68

Workflow file for this run

name: PyTest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.9
steps:
- uses: actions/checkout@v3
- name: Install poetry dependencies
run: pip install poetry
- name: Install project
run: poetry install
- name: Run test suite
run: poetry run pytest -v