Skip to content

Commit e01d327

Browse files
authored
Always write devicelab test results to a file if the resultsPath option is present (flutter#86393)
Some runs of DeviceLab performance tests are run without a gitBranch option, but still must save their results to a local file.
1 parent 7f741e9 commit e01d327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/devicelab/lib/framework/runner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Future<void> runTasks(
4242
print(const JsonEncoder.withIndent(' ').convert(result));
4343
section('Finished task "$taskName"');
4444

45-
if (resultsPath != null && gitBranch != null) {
45+
if (resultsPath != null) {
4646
final Cocoon cocoon = Cocoon();
4747
await cocoon.writeTaskResultToFile(
4848
builderName: luciBuilder,

0 commit comments

Comments
 (0)