Skip to content

Commit af23b46

Browse files
Merge pull request #3482 from didier-wenzek/refactor/remove-dev-dependency-on-serial-test
refactor: remove dev dependency on serial-test
2 parents 8c2f74f + 75f8d42 commit af23b46

File tree

4 files changed

+0
-54
lines changed

4 files changed

+0
-54
lines changed

Cargo.lock

Lines changed: 0 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ rustls-pemfile = "2.2"
168168
serde = "1.0"
169169
serde_ignored = "0.1"
170170
serde_json = "1.0"
171-
serial_test = "3.2"
172171
sha-1 = "0.10"
173172
sha256 = "1.1"
174173
shell-words = "1.1"

crates/core/plugin_sm/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,15 @@ download = { workspace = true }
1818
regex = { workspace = true }
1919
reqwest = { workspace = true }
2020
serde = { workspace = true }
21-
serde_json = { workspace = true }
2221
tedge_api = { workspace = true }
2322
tedge_config = { workspace = true }
24-
tedge_utils = { workspace = true }
2523
thiserror = { workspace = true }
2624
time = { workspace = true, features = ["formatting"] }
2725
tokio = { workspace = true, features = ["process", "rt"] }
2826
tracing = { workspace = true }
29-
url = { workspace = true }
3027

3128
[dev-dependencies]
3229
anyhow = { workspace = true }
33-
serial_test = { workspace = true }
3430
tempfile = { workspace = true }
3531
test-case = { workspace = true }
3632

crates/core/plugin_sm/tests/plugin.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ mod tests {
44
use plugin_sm::plugin::deserialize_module_info;
55
use plugin_sm::plugin::sm_path;
66
use plugin_sm::plugin::ExternalPluginCommand;
7-
use serial_test::serial;
87
use std::io::Write;
98
use std::path::Path;
109
use std::path::PathBuf;
@@ -52,7 +51,6 @@ mod tests {
5251
}
5352

5453
#[test]
55-
#[serial]
5654
fn plugin_call_name_and_path() -> Result<(), anyhow::Error> {
5755
let dummy_plugin_path = get_dummy_plugin_path();
5856

@@ -78,7 +76,6 @@ mod tests {
7876
}
7977

8078
#[test]
81-
#[serial]
8279
fn plugin_check_module_type_both_same() {
8380
let dummy_plugin_path = get_dummy_plugin_path();
8481

@@ -109,7 +106,6 @@ mod tests {
109106
}
110107

111108
#[test]
112-
#[serial]
113109
fn plugin_check_module_type_both_different() {
114110
// Create dummy plugin.
115111
let dummy_plugin_path = get_dummy_plugin_path();
@@ -149,7 +145,6 @@ mod tests {
149145
}
150146

151147
#[test]
152-
#[serial]
153148
fn plugin_check_module_type_default() {
154149
// Create dummy plugin.
155150
let dummy_plugin_path = get_dummy_plugin_path();

0 commit comments

Comments
 (0)