Skip to content

Commit 950a64e

Browse files
committed
test(ci): ignore test_engine_stops_on_flag in CI
The test requires a terminal (crossterm EventStream) which is unavailable in CI environments, causing timeouts on Windows. This mirrors the existing test_tick_increments_frame_count test which has the same ignore attribute.
1 parent 155f4d2 commit 950a64e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/cortex-core/src/frame_engine.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,7 @@ mod tests {
665665
}
666666

667667
#[tokio::test]
668+
#[ignore = "Requires terminal (crossterm EventStream) which is unavailable in CI"]
668669
async fn test_engine_stops_on_flag() {
669670
let (tx, mut rx) = create_event_channel();
670671
let running = Arc::new(AtomicBool::new(true));

0 commit comments

Comments
 (0)