diff options
author | Benoit Foucher <benoit@zeroc.com> | 2021-01-08 14:48:06 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2021-01-08 14:48:06 +0100 |
commit | e1d825fe90571a91d38442945cd3f948cdd16eac (patch) | |
tree | cb9530aa08547b23292071ce37954ef7244601dc /python | |
parent | Update JavaScript npm dependencies (diff) | |
download | ice-e1d825fe90571a91d38442945cd3f948cdd16eac.tar.bz2 ice-e1d825fe90571a91d38442945cd3f948cdd16eac.tar.xz ice-e1d825fe90571a91d38442945cd3f948cdd16eac.zip |
Fixed asyncio/test.py to only run the test with Python 3.7
Diffstat (limited to 'python')
-rw-r--r-- | python/test/Ice/asyncio/test.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/test/Ice/asyncio/test.py b/python/test/Ice/asyncio/test.py index 40ed163c546..5e4ba559841 100644 --- a/python/test/Ice/asyncio/test.py +++ b/python/test/Ice/asyncio/test.py @@ -3,8 +3,7 @@ # Copyright (c) ZeroC, Inc. All rights reserved. # -# This test doesn't support running with IceSSL, the Router object in the client process uses -# the client certificate and fails with "unsupported certificate purpose" +# This test requires asyncio methods which are only available with Python 3.7 -if sys.version_info >= (3, 5): +if sys.version_info >= (3, 7): TestSuite(__name__) |