File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ find . -name "*.pyc" -print0 | xargs -0 rm
2626
2727# Example line:
2828# import time: 1112 | 70127 | libcloud
29- LIBCLOUD_IMPORT_TIMINGS=$( python3.8 -X importtime -c " import libcloud" 2>&1 )
29+ LIBCLOUD_IMPORT_TIMINGS=$( python3.9 -X importtime -c " import libcloud" 2>&1 )
3030LIBCLOUD_IMPORT_TIME_CUMULATIVE_US=$( echo -e " ${LIBCLOUD_IMPORT_TIMINGS} " | tail -1 | grep " | libcloud" | awk ' {print $5}' )
3131
3232echo " Import timings for \" libcloud\" module"
4040# Clean up any cached files to ensure consistent and clean environment
4141find . -name " *.pyc" -print0 | xargs -0 rm
4242
43- EC2_DRIVER_IMPORT_TIMINGS=$( python3.8 -X importtime -c " import libcloud.compute.drivers.ec2" 2>&1 )
43+ EC2_DRIVER_IMPORT_TIMINGS=$( python3.9 -X importtime -c " import libcloud.compute.drivers.ec2" 2>&1 )
4444EC2_DRIVER_IMPORT_TIME_CUMULATIVE_US=$( echo -e " $EC2_DRIVER_IMPORT_TIMINGS }" | tail -1 | grep " | libcloud.compute.drivers.ec2" | awk ' {print $5}' )
4545
4646echo " "
You can’t perform that action at this time.
0 commit comments