Skip to content

Merge commit '183701800f7c9e571a3bb0d63fc4e5a78eb23491' into A-B-fiel… #384

Merge commit '183701800f7c9e571a3bb0d63fc4e5a78eb23491' into A-B-fiel…

Merge commit '183701800f7c9e571a3bb0d63fc4e5a78eb23491' into A-B-fiel… #384

Workflow file for this run

name: Run Tests
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: "1.2.2"
- name: install dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-asyncio
- name: run pytests
env:
PYTHONPATH: ${{ github.workspace }}
run: pytest