Skip to content

Commit 889df2d

Browse files
committed
[rust] Increase log level to trace in some tests
1 parent e5c8b61 commit 889df2d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
name: Tests (${{ matrix.os }})
2929
cache-key: rust-test
3030
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/...

rust/tests/browser_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fn wrong_parameters_test(
6969
let mut cmd = Command::new(env!("CARGO_BIN_EXE_selenium-manager"));
7070
let assert_result = cmd
7171
.args([
72-
"--debug",
72+
"--trace",
7373
"--browser",
7474
&browser,
7575
"--browser-version",

rust/tests/chrome_download_tests.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ fn chrome_latest_download_test() {
3131
"--force-browser-download",
3232
"--output",
3333
"json",
34+
"--trace",
3435
])
3536
.assert()
3637
.success()
@@ -52,6 +53,7 @@ fn chrome_version_download_test(#[case] browser_version: String) {
5253
&browser_version,
5354
"--output",
5455
"json",
56+
"--trace",
5557
])
5658
.assert()
5759
.success()

0 commit comments

Comments
 (0)