Skip to content

Commit cf1bbda

Browse files
authored
Release agent 0.2.7 (#2171)
Changelog * Upload undeclared outputs of failed/flaky/timed out tests #2169
1 parent 4698bbc commit cf1bbda

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

agent/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bazelci-agent"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = "2018"
55

66
[dependencies]

agent/src/artifact/upload.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ fn watch_bep_json_file(
126126
.map(|str| Path::new(str).to_path_buf());
127127
} else if build_event.is_test_result() {
128128
let test_result = build_event.test_result();
129-
let include_output = ["FAILED", "TIMEOUT", "FLAKY"]
130-
.contains(&test_result.status.as_str());
129+
let include_output =
130+
["FAILED", "TIMEOUT", "FLAKY"].contains(&test_result.status.as_str());
131131
for output in test_result.test_action_outputs.iter() {
132132
match output.name.as_str() {
133133
"test.log" => {

0 commit comments

Comments
 (0)