Skip to content

Bump gitpython from 3.1.30 to 3.1.32 #63

Bump gitpython from 3.1.30 to 3.1.32

Bump gitpython from 3.1.30 to 3.1.32 #63

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
pip install poetry
poetry install
poetry run bls-bible server start dev &
- name: Run tests
uses: nick-fields/retry@v2
with:
max_attempts: 1
timeout_minutes: 20
retry_wait_seconds: 0
command: |
poetry run pytest --exitfirst --disable-warnings --cov-report xml:cov.xml --cov=bls_bible .