From 89343ecd1b54eac88aa97d568dd0cd27a6076b07 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Fri, 10 Nov 2023 16:34:49 -0500 Subject: [PATCH] x --- backend/pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 5310fc85..ed66a0f0 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -50,9 +50,10 @@ omit = [ # --strict-config any warnings encountered while parsing the `pytest` # section of the configuration file raise errors. addopts = "--strict-markers --strict-config --durations=5 -vv" -# Global timeout for all tests. There shuold be a good reason for a test to -# take more than 5 second -timeout = 5 +# Use global timeout of 30 seconds for now. +# Most tests should be closer to ~100 ms, but some of the tests involve +# parsing files. We can adjust on a per test basis later on. +timeout = 30 [build-system]