1
0
Fork 0

chore(scripts): reduce timeout for slow release tests

This commit is contained in:
Sean Sube 2023-07-05 23:04:38 -05:00
parent 17a710197c
commit 1133321179
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ except Exception as err:
logger = getLogger(__name__)
FAST_TEST = 20
SLOW_TEST = 50
VERY_SLOW_TEST = 100
FAST_TEST = 10
SLOW_TEST = 25
VERY_SLOW_TEST = 75
def test_path(relpath: str) -> str: