File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 28
28
name : Tests (${{ matrix.os }})
29
29
cache-key : rust-test
30
30
os : ${{ matrix.os }}
31
- run : bazel test --test_env=RUST_BACKTRACE=full --flaky_test_attempts=3 //rust/...
31
+ run : bazel test --test_env=RUST_BACKTRACE=1 --flaky_test_attempts=3 //rust/...
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ fn wrong_parameters_test(
69
69
let mut cmd = Command :: new ( env ! ( "CARGO_BIN_EXE_selenium-manager" ) ) ;
70
70
let assert_result = cmd
71
71
. args ( [
72
- "--debug " ,
72
+ "--trace " ,
73
73
"--browser" ,
74
74
& browser,
75
75
"--browser-version" ,
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ fn chrome_latest_download_test() {
31
31
"--force-browser-download" ,
32
32
"--output" ,
33
33
"json" ,
34
+ "--trace" ,
34
35
] )
35
36
. assert ( )
36
37
. success ( )
@@ -52,6 +53,7 @@ fn chrome_version_download_test(#[case] browser_version: String) {
52
53
& browser_version,
53
54
"--output" ,
54
55
"json" ,
56
+ "--trace" ,
55
57
] )
56
58
. assert ( )
57
59
. success ( )
You can’t perform that action at this time.
0 commit comments