Skip to content

Commit 0292629

Browse files
committed
Disable flaky test (async signals); less verbose unzip
1 parent f95cb4b commit 0292629

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/composite/godot-install/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
fi
5252
5353
curl "$url" -Lo artifact.zip --retry 3
54-
unzip artifact.zip -d $RUNNER_DIR/godot_bin
54+
unzip -q artifact.zip -d $RUNNER_DIR/godot_bin
5555
shell: bash
5656

5757
- name: "Prepare Godot executable"

itest/rust/src/engine_tests/async_test.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@ fn signal_future_non_send_arg_panic() -> TaskHandle {
160160
handle
161161
}
162162

163+
// FIXME test is flaky and occasionally breaks CI job `linux-features-experimental`. Should become deterministic, then un-skip.
163164
#[cfg(feature = "experimental-threads")]
164-
#[itest(async)]
165+
#[itest(async, skip)]
165166
fn signal_future_send_arg_no_panic() -> TaskHandle {
166167
use crate::framework::ThreadCrosser;
167168

0 commit comments

Comments
 (0)