Skip to content

Commit 0590ceb

Browse files
committed
roachtest/asyncpg: ignore flaky TestExecuteMany test
The asyncpg test ``` test_execute.TestExecuteMany.test_executemany_server_failure_during_writes ``` has been observed to be flaky. This change adds the test to the ignore list. Fixes: #151024 Epic: none Release note: none
1 parent 85bc357 commit 0590ceb

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

pkg/cmd/roachtest/tests/asyncpg_blocklist.go

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,21 @@ var asyncpgBlocklist = blocklist{
6969
}
7070

7171
var asyncpgIgnoreList = blocklist{
72-
`test_pool.TestPool.test_pool_01`: "can't parse output",
73-
`test_copy.TestCopyFrom.test_copy_from_query_basics`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
74-
`test_copy.TestCopyFrom.test_copy_from_query_cancellation_explicit`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
75-
`test_copy.TestCopyFrom.test_copy_from_query_timeout_1`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
76-
`test_copy.TestCopyFrom.test_copy_from_query_to_sink`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
77-
`test_copy.TestCopyFrom.test_copy_from_table_large_rows`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
78-
`test_copy.TestCopyTo.test_copy_records_to_table_1`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
79-
`test_copy.TestCopyTo.test_copy_records_to_table_no_binary_codec`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
80-
`test_copy.TestCopyTo.test_copy_to_table_basics`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
81-
`test_copy.TestCopyTo.test_copy_to_table_fail_in_source_1`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
82-
`test_copy.TestCopyTo.test_copy_to_table_fail_in_source_2`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
83-
`test_copy.TestCopyTo.test_copy_to_table_from_bytes_like`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
84-
`test_copy.TestCopyTo.test_copy_to_table_from_file_path`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
85-
`test_copy.TestCopyTo.test_copy_to_table_large_rows`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
86-
`test_copy.TestCopyTo.test_copy_to_table_timeout`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
87-
`test_listeners.TestListeners.test_dangling_listener_warns`: "flaky",
72+
`test_pool.TestPool.test_pool_01`: "can't parse output",
73+
`test_copy.TestCopyFrom.test_copy_from_query_basics`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
74+
`test_copy.TestCopyFrom.test_copy_from_query_cancellation_explicit`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
75+
`test_copy.TestCopyFrom.test_copy_from_query_timeout_1`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
76+
`test_copy.TestCopyFrom.test_copy_from_query_to_sink`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
77+
`test_copy.TestCopyFrom.test_copy_from_table_large_rows`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
78+
`test_copy.TestCopyTo.test_copy_records_to_table_1`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
79+
`test_copy.TestCopyTo.test_copy_records_to_table_no_binary_codec`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
80+
`test_copy.TestCopyTo.test_copy_to_table_basics`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
81+
`test_copy.TestCopyTo.test_copy_to_table_fail_in_source_1`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
82+
`test_copy.TestCopyTo.test_copy_to_table_fail_in_source_2`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
83+
`test_copy.TestCopyTo.test_copy_to_table_from_bytes_like`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
84+
`test_copy.TestCopyTo.test_copy_to_table_from_file_path`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
85+
`test_copy.TestCopyTo.test_copy_to_table_large_rows`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
86+
`test_copy.TestCopyTo.test_copy_to_table_timeout`: "flaky; see #119291 and https://github.com/MagicStack/asyncpg/issues/240",
87+
`test_execute.TestExecuteMany.test_executemany_server_failure_during_writes`: "flaky",
88+
`test_listeners.TestListeners.test_dangling_listener_warns`: "flaky",
8889
}

0 commit comments

Comments
 (0)