Skip to content

Commit

Permalink
Bump serial_test dependency to 3.1.1 (#3740)
Browse files Browse the repository at this point in the history
`serial_test = "1.0.0"` has a bug where it sometimes does not honor the
`#[ignore]` attribute on a test.

This PR bumps the dependency to version `3.1.1`.

Co-authored-by: Fahad Zubair <[email protected]>
  • Loading branch information
drganjoo and Fahad Zubair authored Jul 10, 2024
1 parent 4c30f00 commit 2313eb9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/pokemon-service-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pokemon-service-common = { path = "../pokemon-service-common/" }

[dev-dependencies]
assert_cmd = "2.0"
serial_test = "1.0.0"
serial_test = "3.1.1"

# These dependencies are only required for testing the `pokemon-service-tls` program.
hyper-rustls = { version = "0.24", features = ["http2"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/pokemon-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pokemon-service-common = { path = "../pokemon-service-common/" }
assert_cmd = "2.0"
async-stream = "0.3"
rand = "0.8.5"
serial_test = "1.0.0"
serial_test = "3.1.1"

# We use hyper client in tests
hyper = { version = "0.14.26", features = ["server", "client"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/python/pokemon-service-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rand = "0.8"
async-stream = "0.3"
command-group = "2.1.0"
tokio = { version = "1.20.1", features = ["full"] }
serial_test = "2.0.0"
serial_test = "3.1.1"
rustls-pemfile = "1.0.1"
tokio-rustls = "0.24.0"
hyper-rustls = { version = "0.24", features = ["http2"] }
Expand Down

0 comments on commit 2313eb9

Please sign in to comment.