Skip to content

Commit 77c459c

Browse files
authored
Add ignore reason
1 parent fb30184 commit 77c459c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/runtime/src/process/tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn process_property_descriptors() {
6262
}
6363

6464
#[test]
65-
#[ignore]
65+
#[ignore = "Unsafe under parallel test execution as it tempers with env."]
6666
fn process_env_contains_variables() {
6767
temp_env::with_vars(
6868
[
@@ -90,7 +90,7 @@ fn process_env_contains_variables() {
9090
}
9191

9292
#[test]
93-
#[ignore]
93+
#[ignore = "Unsafe under parallel test execution as it tempers with env."]
9494
fn process_env_properties_writable() {
9595
temp_env::with_var("TEST_VAR", Some("original"), || {
9696
let mut context = Context::default();
@@ -135,7 +135,7 @@ fn process_env_object_properties() {
135135
}
136136

137137
#[test]
138-
#[ignore]
138+
#[ignore = "Unsafe under parallel test execution as it tempers with env."]
139139
fn process_env_iteration() {
140140
temp_env::with_vars(
141141
[

0 commit comments

Comments
 (0)