@@ -142,7 +142,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
142
142
for runtime in ["async-std" , "tokio" ]:
143
143
for tls in ["native-tls" , "rustls" , "none" ]:
144
144
run (
145
- f"cargo test --no-default-features --manifest-path sqlx-core/Cargo.toml --features json,_rt-{ runtime } ,_tls-{ tls } " ,
145
+ f"cargo test --no-default-features --manifest-path sqlx-core/Cargo.toml --features json,offline,migrate, _rt-{ runtime } ,_tls-{ tls } " ,
146
146
comment = "unit test core" ,
147
147
tag = f"unit_{ runtime } _{ tls } "
148
148
)
@@ -159,7 +159,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
159
159
#
160
160
161
161
run (
162
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,sqlite ,runtime-{ runtime } ,tls-{ tls } " ,
162
+ f"cargo test --no-default-features --features any,sqlite,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
163
163
comment = f"test sqlite" ,
164
164
service = "sqlite" ,
165
165
tag = f"sqlite" if runtime == "async-std" else f"sqlite_{ runtime } " ,
@@ -171,7 +171,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
171
171
172
172
for version in ["14" , "13" , "12" , "11" , "10" ]:
173
173
run (
174
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,postgres ,runtime-{ runtime } ,tls-{ tls } " ,
174
+ f"cargo test --no-default-features --features any,postgres,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
175
175
comment = f"test postgres { version } " ,
176
176
service = f"postgres_{ version } " ,
177
177
tag = f"postgres_{ version } " if runtime == "async-std" else f"postgres_{ version } _{ runtime } " ,
@@ -181,7 +181,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
181
181
## +ssl
182
182
for version in ["14" , "13" , "12" , "11" , "10" ]:
183
183
run (
184
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,postgres ,runtime-{ runtime } ,tls-{ tls } " ,
184
+ f"cargo test --no-default-features --features any,postgres,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
185
185
comment = f"test postgres { version } ssl" ,
186
186
database_url_args = "sslmode=verify-ca&sslrootcert=.%2Ftests%2Fcerts%2Fca.crt" ,
187
187
service = f"postgres_{ version } " ,
@@ -191,7 +191,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
191
191
## +client-ssl
192
192
for version in ["14_client_ssl" , "13_client_ssl" , "12_client_ssl" , "11_client_ssl" , "10_client_ssl" ]:
193
193
run (
194
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,postgres ,runtime-{ runtime } ,tls-{ tls } " ,
194
+ f"cargo test --no-default-features --features any,postgres,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
195
195
comment = f"test postgres { version } no-password" ,
196
196
database_url_args = "sslmode=verify-ca&sslrootcert=.%2Ftests%2Fcerts%2Fca.crt&sslkey=.%2Ftests%2Fkeys%2Fclient.key&sslcert=.%2Ftests%2Fcerts%2Fclient.crt" ,
197
197
service = f"postgres_{ version } " ,
@@ -204,7 +204,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
204
204
205
205
for version in ["8" , "5_7" ]:
206
206
run (
207
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,mysql ,runtime-{ runtime } ,tls-{ tls } " ,
207
+ f"cargo test --no-default-features --features any,mysql,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
208
208
comment = f"test mysql { version } " ,
209
209
service = f"mysql_{ version } " ,
210
210
tag = f"mysql_{ version } " if runtime == "async-std" else f"mysql_{ version } _{ runtime } " ,
@@ -214,7 +214,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
214
214
## +client-ssl
215
215
for version in ["8_client_ssl" , "5_7_client_ssl" ]:
216
216
run (
217
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,mysql ,runtime-{ runtime } ,tls-{ tls } " ,
217
+ f"cargo test --no-default-features --features any,mysql,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
218
218
comment = f"test mysql { version } no-password" ,
219
219
database_url_args = "sslmode=verify_ca&ssl-ca=.%2Ftests%2Fcerts%2Fca.crt&ssl-key=.%2Ftests%2Fkeys%2Fclient.key&ssl-cert=.%2Ftests%2Fcerts%2Fclient.crt" ,
220
220
service = f"mysql_{ version } " ,
@@ -227,7 +227,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
227
227
228
228
for version in ["10_6" , "10_5" , "10_4" , "10_3" ]:
229
229
run (
230
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,mysql ,runtime-{ runtime } ,tls-{ tls } " ,
230
+ f"cargo test --no-default-features --features any,mysql,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
231
231
comment = f"test mariadb { version } " ,
232
232
service = f"mariadb_{ version } " ,
233
233
tag = f"mariadb_{ version } " if runtime == "async-std" else f"mariadb_{ version } _{ runtime } " ,
@@ -237,7 +237,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
237
237
## +client-ssl
238
238
for version in ["10_6_client_ssl" , "10_5_client_ssl" , "10_4_client_ssl" , "10_3_client_ssl" ]:
239
239
run (
240
- f"cargo test --no-default-features --features macros, any,_unstable-all-types,mysql ,runtime-{ runtime } ,tls-{ tls } " ,
240
+ f"cargo test --no-default-features --features any,mysql,macros, _unstable-all-types,runtime-{ runtime } ,tls-{ tls } " ,
241
241
comment = f"test mariadb { version } no-password" ,
242
242
database_url_args = "sslmode=verify_ca&ssl-ca=.%2Ftests%2Fcerts%2Fca.crt&ssl-key=.%2Ftests%2Fkeys%2Fclient.key&ssl-cert=.%2Ftests%2Fcerts%2Fclient.crt" ,
243
243
service = f"mariadb_{ version } " ,
0 commit comments