Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ invalid_codeblock_attributes = "deny"
unescaped_backticks = "deny"

[dev-dependencies]
rstest = "0.18.0"
rstest = "0.26.1"
rstest-bdd = "0.5.0"
rstest-bdd-macros = { version = "0.5.0", features = ["strict-compile-time-validation"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"], default-features = false }
Expand Down
119 changes: 60 additions & 59 deletions test_support/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test_support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ anyhow = "1"
thiserror = "1"
assert_cmd = "2.0.0"
netsuke = { path = ".." }
rstest = "0.18.0"
rstest = "0.26.1"
Comment thread
leynos marked this conversation as resolved.

[dev-dependencies]
6 changes: 0 additions & 6 deletions tests/bdd/fixtures/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@
//! With rstest-bdd 0.3.1+, fixtures are injected directly into step functions
//! as parameters, eliminating the need for thread-local storage.

// The `#[fixture]` macro generates types that cannot have doc comments attached
#![expect(
missing_docs,
reason = "Generated fixture types cannot have doc comments attached"
)]

use camino::Utf8PathBuf;
use netsuke::cli::Cli;
use netsuke::localization::LocalizerGuard;
Expand Down
Loading