Skip to content

Commit da1c2da

Browse files
committed
Disable integration test in code coverage build
The test fails only in the codecov build, not in a local build or in the other integration test. Needs further investigation.
1 parent f989c17 commit da1c2da

File tree

1 file changed

+1
-2
lines changed
  • testing/matrix-sdk-integration-testing/src/tests/sliding_sync

1 file changed

+1
-2
lines changed

Diff for: testing/matrix-sdk-integration-testing/src/tests/sliding_sync/room.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ async fn test_room_avatar_group_conversation() -> Result<()> {
212212
Ok(())
213213
}
214214

215+
#[cfg(not(tarpaulin_include))] // FIXME(bnjbvr) times out
215216
#[tokio::test]
216217
async fn test_room_notification_count() -> Result<()> {
217218
let bob =
@@ -360,7 +361,6 @@ async fn test_room_notification_count() -> Result<()> {
360361
// The highlight also counts as a notification.
361362
assert_eq!(alice_room.num_unread_messages(), 2);
362363
assert_eq!(alice_room.num_unread_notifications(), 2);
363-
// One new highlight.
364364
assert_eq!(alice_room.num_unread_mentions(), 1);
365365
break;
366366
}
@@ -434,7 +434,6 @@ async fn test_room_notification_count() -> Result<()> {
434434
// exists.
435435
assert_eq!(alice_room.num_unread_messages(), 1);
436436
assert_eq!(alice_room.num_unread_notifications(), 0);
437-
// One new highlight.
438437
assert_eq!(alice_room.num_unread_mentions(), 0);
439438

440439
assert_pending!(info_updates);

0 commit comments

Comments
 (0)