@@ -138,7 +138,6 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
138
138
tag = f"postgres_{ version } " if runtime == "async-std" else f"postgres_{ version } _{ runtime } " ,
139
139
)
140
140
141
- < << << << HEAD
142
141
## +ssl
143
142
for version in ["14" , "13" , "12" , "11" , "10" ]:
144
143
run (
@@ -149,10 +148,8 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
149
148
tag = f"postgres_{ version } _ssl" if runtime == "async-std" else f"postgres_{ version } _ssl_{ runtime } " ,
150
149
)
151
150
152
- == == == =
153
- >> >> >> > c85c4d2b (Add client ssl tests for MariaDB and MySQL )
154
151
## +client-ssl
155
- for version in ["14_client_ssl" , "13_client_ssl" , "12_client_ssl" , "11_client_ssl" , "10_client_ssl" , "9_6_client_ssl" ]:
152
+ for version in ["14_client_ssl" , "13_client_ssl" , "12_client_ssl" , "11_client_ssl" , "10_client_ssl" ]:
156
153
run (
157
154
f"cargo test --no-default-features --features macros,offline,any,all-types,postgres,runtime-{ runtime } -{ tls } " ,
158
155
comment = f"test postgres { version } no-password" ,
@@ -174,7 +171,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
174
171
)
175
172
176
173
## +client-ssl
177
- for version in ["8_client_ssl" , "5_7_client_ssl" , "5_6_client_ssl" ]:
174
+ for version in ["8_client_ssl" , "5_7_client_ssl" ]:
178
175
run (
179
176
f"cargo test --no-default-features --features macros,offline,any,all-types,mysql,runtime-{ runtime } -{ tls } " ,
180
177
comment = f"test mysql { version } no-password" ,
@@ -187,7 +184,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
187
184
# mariadb
188
185
#
189
186
190
- for version in ["10_6" , "10_5" , "10_4" , "10_3" , "10_2" ]:
187
+ for version in ["10_6" , "10_5" , "10_4" , "10_3" ]:
191
188
run (
192
189
f"cargo test --no-default-features --features macros,offline,any,all-types,mysql,runtime-{ runtime } -{ tls } " ,
193
190
comment = f"test mariadb { version } " ,
@@ -196,7 +193,7 @@ def run(command, comment=None, env=None, service=None, tag=None, args=None, data
196
193
)
197
194
198
195
## +client-ssl
199
- for version in ["10_6_client_ssl" , "10_5_client_ssl" , "10_4_client_ssl" , "10_3_client_ssl" , "10_2_client_ssl" ]:
196
+ for version in ["10_6_client_ssl" , "10_5_client_ssl" , "10_4_client_ssl" , "10_3_client_ssl" ]:
200
197
run (
201
198
f"cargo test --no-default-features --features macros,offline,any,all-types,mysql,runtime-{ runtime } -{ tls } " ,
202
199
comment = f"test mariadb { version } no-password" ,
0 commit comments