@@ -68,7 +68,7 @@ public async Task DisposeAsync()
6868 await _sqlContainer . DisposeAsync ( ) ;
6969 }
7070
71- [ SkipOnCI ]
71+ [ Fact ]
7272 public async Task ShouldDeleteData ( )
7373 {
7474 await _database . ExecuteAsync ( "create table \" foo\" (value int)" ) ;
@@ -86,7 +86,7 @@ public async Task ShouldDeleteData()
8686 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM \" foo\" " ) . ShouldBe ( 0 ) ;
8787 }
8888
89- [ SkipOnCI ]
89+ [ Fact ]
9090 public async Task ShouldIgnoreTables ( )
9191 {
9292 await _database . ExecuteAsync ( "create table foo (Value int)" ) ;
@@ -108,7 +108,7 @@ public async Task ShouldIgnoreTables()
108108 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM bar" ) . ShouldBe ( 0 ) ;
109109 }
110110
111- [ SkipOnCI ]
111+ [ Fact ]
112112 public async Task ShouldIgnoreTablesIfSchemaSpecified ( )
113113 {
114114 await _database . ExecuteAsync ( "create schema eggs" ) ;
@@ -131,7 +131,7 @@ public async Task ShouldIgnoreTablesIfSchemaSpecified()
131131 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM eggs.bar" ) . ShouldBe ( 0 ) ;
132132 }
133133
134- [ SkipOnCI ]
134+ [ Fact ]
135135 public async Task ShouldIncludeTables ( )
136136 {
137137 await _database . ExecuteAsync ( "create table foo (Value int)" ) ;
@@ -153,7 +153,7 @@ public async Task ShouldIncludeTables()
153153 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM bar" ) . ShouldBe ( 100 ) ;
154154 }
155155
156- [ SkipOnCI ]
156+ [ Fact ]
157157 public async Task ShouldIncludeTablesIfSchemaSpecified ( )
158158 {
159159 await _database . ExecuteAsync ( "create schema eggs" ) ;
@@ -176,7 +176,7 @@ public async Task ShouldIncludeTablesIfSchemaSpecified()
176176 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM eggs.bar" ) . ShouldBe ( 100 ) ;
177177 }
178178
179- [ SkipOnCI ]
179+ [ Fact ]
180180 public async Task ShouldHandleRelationships ( )
181181 {
182182 await _database . ExecuteAsync ( "create table foo (value int, primary key (value))" ) ;
@@ -209,7 +209,7 @@ public async Task ShouldHandleRelationships()
209209 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM baz" ) . ShouldBe ( 0 ) ;
210210 }
211211
212- [ SkipOnCI ]
212+ [ Fact ]
213213 public async Task ShouldHandleCircularRelationships ( )
214214 {
215215 await _database . ExecuteAsync ( "create table parent (id int primary key, childid int NULL)" ) ;
@@ -244,7 +244,7 @@ public async Task ShouldHandleCircularRelationships()
244244 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM child" ) . ShouldBe ( 0 ) ;
245245 }
246246
247- [ SkipOnCI ]
247+ [ Fact ]
248248 public async Task ShouldHandleSelfRelationships ( )
249249 {
250250 await _database . ExecuteAsync ( "create table foo (id int primary key, parentid int NULL)" ) ;
@@ -272,7 +272,7 @@ public async Task ShouldHandleSelfRelationships()
272272 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM foo" ) . ShouldBe ( 0 ) ;
273273 }
274274
275- [ SkipOnCI ]
275+ [ Fact ]
276276 public async Task ShouldHandleComplexCycles ( )
277277 {
278278 await _database . ExecuteAsync ( "create table a (id int primary key, b_id int NULL)" ) ;
@@ -326,7 +326,7 @@ public async Task ShouldHandleComplexCycles()
326326 }
327327
328328
329- [ SkipOnCI ]
329+ [ Fact ]
330330 public async Task ShouldExcludeSchemas ( )
331331 {
332332 await _database . ExecuteAsync ( "create schema a" ) ;
@@ -350,7 +350,7 @@ public async Task ShouldExcludeSchemas()
350350 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM b.bar" ) . ShouldBe ( 0 ) ;
351351 }
352352
353- [ SkipOnCI ]
353+ [ Fact ]
354354 public async Task ShouldIncludeSchemas ( )
355355 {
356356 await _database . ExecuteAsync ( "create schema a" ) ;
@@ -374,7 +374,7 @@ public async Task ShouldIncludeSchemas()
374374 _database . ExecuteScalar < int > ( "SELECT COUNT(1) FROM b.bar" ) . ShouldBe ( 0 ) ;
375375 }
376376
377- [ SkipOnCI ]
377+ [ Fact ]
378378 public async Task ShouldResetSequencesAndIdentities ( )
379379 {
380380 await _database . ExecuteAsync ( "CREATE TABLE a (id INT GENERATED ALWAYS AS IDENTITY, value SERIAL)" ) ;
0 commit comments