diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2021-10-08 16:31:02 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-10-08 16:31:02 -0400 |
commit | 521817ab3c2f077720b33539bdbf047466b098d4 (patch) | |
tree | 4cf3f94afcd73c7d742a028b0c5934e49b165949 /tests/test_client.py | |
parent | bf167341d8b90e5dee5b70b49dabe9a70a9982b8 (diff) |
bump test/ci related sleep :(
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index 60ad310c..f14aac23 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -421,7 +421,10 @@ 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 - time.sleep(0.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. + time.sleep(1) gc.collect() gc.collect() |