Skip to content

Commit 7df35ef

Browse files
committed
Run simple cancellation tests by default.
1 parent 286036f commit 7df35ef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/SideBySide/CancelTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public async Task CancelCommandWithTokenBeforeExecuteScalar()
164164
}
165165
}
166166

167-
[SkippableFact(ServerFeatures.Timeout)]
167+
[Fact]
168168
public async Task CancelCommandWithTokenBeforeExecuteNonQuery()
169169
{
170170
using var cmd = new MySqlCommand("select 1;", m_database.Connection);
@@ -179,7 +179,7 @@ public async Task CancelCommandWithTokenBeforeExecuteNonQuery()
179179
}
180180
}
181181

182-
[SkippableFact(ServerFeatures.Timeout)]
182+
[Fact]
183183
public async Task CancelCommandWithTokenBeforeExecuteReader()
184184
{
185185
using var cmd = new MySqlCommand("select 1;", m_database.Connection);
@@ -516,7 +516,7 @@ public void CancelMultiCommandBatchReader()
516516
task.Wait(); // shouldn't throw
517517
}
518518

519-
[SkippableFact(ServerFeatures.Timeout)]
519+
[Fact]
520520
public async Task CancelBatchWithTokenBeforeExecuteScalar()
521521
{
522522
using var batch = new MySqlBatch(m_database.Connection)
@@ -537,7 +537,7 @@ public async Task CancelBatchWithTokenBeforeExecuteScalar()
537537
}
538538
}
539539

540-
[SkippableFact(ServerFeatures.Timeout)]
540+
[Fact]
541541
public async Task CancelBatchWithTokenBeforeExecuteNonQuery()
542542
{
543543
using var batch = new MySqlBatch(m_database.Connection)
@@ -558,7 +558,7 @@ public async Task CancelBatchWithTokenBeforeExecuteNonQuery()
558558
}
559559
}
560560

561-
[SkippableFact(ServerFeatures.Timeout)]
561+
[Fact]
562562
public async Task CancelBatchWithTokenBeforeExecuteReader()
563563
{
564564
using var batch = new MySqlBatch(m_database.Connection)

0 commit comments

Comments
 (0)