Bump `serial_test` dependency to `3.1.1` (#3740)

`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 <fahadzub@amazon.com>
This commit is contained in:
Fahad Zubair 2024-07-10 17:12:44 +01:00 committed by GitHub
parent 4c30f00f64
commit 2313eb9e75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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"] }

View File

@ -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"] }

View File

@ -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"] }