PYTHON-1606 - Update Ubuntu 12 and Debian 7 testing

This commit is contained in:
Bernie Hackett 2018-07-02 19:50:53 -07:00 committed by Bernie Hackett
parent 50ae811929
commit bc13d4b655
2 changed files with 20 additions and 1 deletions

View File

@ -870,11 +870,20 @@ axes:
run_on: rhel70-small
batchtime: 10080 # 7 days
# OSes that support versions of MongoDB>=2.6 and <4.0 with SSL.
- id: os-no-40-plus
display_name: OS
values:
- id: debian71-test
display_name: "Debian 7.1"
run_on: debian71-test
batchtime: 10080 # 7 days
- id: ubuntu-12.04
display_name: "Ubuntu 12.04"
run_on: ubuntu1204-test
batchtime: 10080 # 7 days
# OSes that support versions of MongoDB without SSL.
- id: os-nossl
display_name: OS
@ -1164,6 +1173,16 @@ buildvariants:
- ".3.0"
- ".2.6"
- matrix_name: "tests-no-40-plus"
matrix_spec: {"os-no-40-plus": "*", auth-ssl: "*"}
display_name: "${os-no-40-plus} ${auth-ssl}"
tasks:
- ".3.6"
- ".3.4"
- ".3.2"
- ".3.0"
- ".2.6"
- matrix_name: "tests-nossl"
matrix_spec: {"os-nossl": "*", auth: "*", ssl: "nossl"}
display_name: "${os-nossl} ${auth} ${ssl}"

View File

@ -480,7 +480,7 @@ def run_threads(collection, target):
t.start()
for t in threads:
t.join(30)
t.join(60)
assert not t.isAlive()