This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 1b72cc92fd421c4c54db8b7dc798000cb2252ec4 Author: Tomaz Muraus <to...@tomaz.me> AuthorDate: Thu Jun 20 18:58:47 2024 +0200 Increase max import time threshold for libcloud.compute.drivers.ec2 module. This needs to be done since number of regions / constants has increased and the import is a bit slower now. --- scripts/time_imports.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/time_imports.sh b/scripts/time_imports.sh index 27f07e05c..a1002d52a 100755 --- a/scripts/time_imports.sh +++ b/scripts/time_imports.sh @@ -19,7 +19,7 @@ set -e # Script which fails if any of the import takes more than threshold ms LIBCLOUD_CUMULATIVE_IMPORT_TIME_LIMIT_US=400000 -EC2_DRIVER_CUMULATIVE_IMPORT_TIME_LIMIT_US=480000 +EC2_DRIVER_CUMULATIVE_IMPORT_TIME_LIMIT_US=560000 # Clean up any cached files to ensure consistent and clean environment find . -name "*.pyc" -print0 | xargs -0 rm