diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-12 16:30:59 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-12 21:44:59 -0500 |
commit | 83d1175c32a0638460b51cc8ce7eb1df3a4cf949 (patch) | |
tree | 7e940bc4bc7e10052493753c814a564a8b25d043 /tests/test_client.py | |
parent | 027728e17b31fb3ee685733c8b39a06b57158849 (diff) |
Update a bunch of no/low impact python2/3 references/comments
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index cb34348a..c9e64c0b 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -443,7 +443,7 @@ class SSHClientTest(ClientTest): verify that when an SSHClient is collected, its transport (and the transport's packetizer) is closed. """ - # Skipped on PyPy because it fails on travis for unknown reasons + # Skipped on PyPy because it fails on CI for unknown reasons if platform.python_implementation() == "PyPy": return @@ -465,9 +465,9 @@ class SSHClientTest(ClientTest): # force a collection to see whether the SSHClient object is deallocated # 2 GCs are needed on PyPy, time is needed for Python 3 - # TODO: this still fails randomly under CircleCI under Python 3.7, 3.8 - # at the very least. bumped sleep 0.3->1.0s but the underlying - # functionality should get reevaluated once we drop Python 2. + # TODO 4.0: this still fails randomly under CircleCI under Python 3.7, + # 3.8 at the very least. bumped sleep 0.3->1.0s but the underlying + # functionality should get reevaluated now we've dropped Python 2. time.sleep(1) gc.collect() gc.collect() |