1
0
mirror of synced 2024-11-12 01:20:47 +01:00

Extend deadline for hypothesis test when in CI

This commit is contained in:
Stepland 2024-07-15 03:04:16 +02:00
parent aed88472ac
commit 9cbc2ddedf
2 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,7 @@ test:
- poetry run black --check jubeatools
- poetry run flake8 jubeatools
- poetry run mypy jubeatools
- poetry run pytest jubeatools
- poetry run pytest jubeatools --hypothesis-profile ci
build and publish:
stage: deploy

4
jubeatools/conftest.py Normal file
View File

@ -0,0 +1,4 @@
from datetime import timedelta
from hypothesis import settings
settings.register_profile("ci", deadline=timedelta(seconds=1))