Skip to content

fix flaky tests

fix flaky tests #23

Workflow file for this run

name: CI bpm-ai
on:
push:
branches:
- master
- develop
paths:
- 'bpm-ai/**'
jobs:
pytest:
defaults:
run:
working-directory: ./bpm-ai/tests
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v4
-
run: sudo apt-get install -y tesseract-ocr poppler-utils
-
uses: actions/setup-python@v4
with:
python-version: "3.11"
-
name: Set up poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.6.1"
-
name: Install dependencies
run: poetry install --all-extras
-
name: Run pytest
run: poetry run pytest