Skip to content

Almost certain I fixed the issue with behavior. Verbose errors for de… #24

Almost certain I fixed the issue with behavior. Verbose errors for de…

Almost certain I fixed the issue with behavior. Verbose errors for de… #24

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.8.4
- name: Configure Poetry to not create virtualenv
run: poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install --no-root
- name: Run pytest
run: poetry run pytest