File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ functions:
435435 working_dir : " src"
436436 script : |
437437 # DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
438- PYTHON_BINARY=${PYTHON_BINARY} ATLAS_REPL='${atlas_repl}' ATLAS_SHRD='${atlas_shrd}' ATLAS_FREE='${atlas_free}' sh ${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
438+ PYTHON_BINARY=${PYTHON_BINARY} ATLAS_REPL='${atlas_repl}' ATLAS_SHRD='${atlas_shrd}' ATLAS_FREE='${atlas_free}' ATLAS_TLSP='${atlas_tls11plus}' sh ${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
439439
440440 " cleanup " :
441441 - command : shell.exec
Original file line number Diff line number Diff line change 3333_REPL = os .environ .get ("ATLAS_REPL" )
3434_SHRD = os .environ .get ("ATLAS_SHRD" )
3535_FREE = os .environ .get ("ATLAS_FREE" )
36+ _TLSP = os .environ .get ("ATLAS_TLSP" )
3637
3738
3839def _connect (uri ):
@@ -62,6 +63,9 @@ def test_free_tier(self):
6263 raise unittest .SkipTest ("Free tier requires SNI support." )
6364 _connect (_FREE )
6465
66+ def test_tls_11_plus (self ):
67+ _connect (_TLSP )
68+
6569
6670if __name__ == '__main__' :
6771 unittest .main ()
You can’t perform that action at this time.
0 commit comments