Skip to content

Commit

Permalink
[rust] Increase log level to trace in some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Aug 9, 2023
1 parent e5c8b61 commit 889df2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
name: Tests (${{ matrix.os }})
cache-key: rust-test
os: ${{ matrix.os }}
run: bazel test --test_env=RUST_BACKTRACE=full --flaky_test_attempts=3 //rust/...
run: bazel test --test_env=RUST_BACKTRACE=1 --flaky_test_attempts=3 //rust/...
2 changes: 1 addition & 1 deletion rust/tests/browser_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fn wrong_parameters_test(
let mut cmd = Command::new(env!("CARGO_BIN_EXE_selenium-manager"));
let assert_result = cmd
.args([
"--debug",
"--trace",
"--browser",
&browser,
"--browser-version",
Expand Down
2 changes: 2 additions & 0 deletions rust/tests/chrome_download_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ fn chrome_latest_download_test() {
"--force-browser-download",
"--output",
"json",
"--trace",
])
.assert()
.success()
Expand All @@ -52,6 +53,7 @@ fn chrome_version_download_test(#[case] browser_version: String) {
&browser_version,
"--output",
"json",
"--trace",
])
.assert()
.success()
Expand Down

0 comments on commit 889df2d

Please sign in to comment.