File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,21 +130,6 @@ enum ShouldTestStatus {
130130}
131131
132132fn (mut ctx Context) should_test (path string , backend string ) ShouldTestStatus {
133- if path.ends_with ('mysql_orm_test.v' ) {
134- testing.find_started_process ('mysqld' ) or { return .skip }
135- }
136- if path.ends_with ('mysql_test.v' ) {
137- testing.find_started_process ('mysqld' ) or { return .skip }
138- }
139- if path.ends_with ('pg_orm_test.v' ) {
140- testing.find_started_process ('postgres' ) or { return .skip }
141- }
142- if path.ends_with ('pg_double_test.v' ) {
143- testing.find_started_process ('postgres' ) or { return .skip }
144- }
145- if path.ends_with ('onecontext_test.v' ) {
146- return .skip
147- }
148133 if path.ends_with ('_test.v' ) {
149134 return ctx.should_test_when_it_contains_matching_fns (path, backend)
150135 }
You can’t perform that action at this time.
0 commit comments