Skip to content

Fix #10 - ContainedBy Property Bug #71

Fix #10 - ContainedBy Property Bug

Fix #10 - ContainedBy Property Bug #71

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