From d75cda9d826d376d98ec6054ec1efca0ff2a5d13 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Fri, 23 Oct 2020 11:13:25 -0700 Subject: [PATCH] [devicelab] never run pub (#68900) --- dev/devicelab/bin/tasks/flutter_test_performance.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/devicelab/bin/tasks/flutter_test_performance.dart b/dev/devicelab/bin/tasks/flutter_test_performance.dart index 83a4c64987e..6e33833e381 100644 --- a/dev/devicelab/bin/tasks/flutter_test_performance.dart +++ b/dev/devicelab/bin/tasks/flutter_test_performance.dart @@ -107,7 +107,7 @@ void main() { )); final String originalSource = await nodeSourceFile.readAsString(); try { - await runTest(); // first number is meaningless; could have had to build the tool, run pub get, have a cache, etc + await runTest(noPub: true); // first number is meaningless; could have had to build the tool, run pub get, have a cache, etc final int withoutChange = await runTest(noPub: true); // run test again with no change await nodeSourceFile.writeAsString( // only change implementation originalSource