Skip to content

timeout for run() method can be defined in config #151

timeout for run() method can be defined in config

timeout for run() method can be defined in config #151

Workflow file for this run

name: PyTest
on: push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- run: poetry install --all-extras
- run: poetry run pytest -v