diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_sftp_big.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_sftp_big.py b/tests/test_sftp_big.py index 20bf0075..379bfe12 100644 --- a/tests/test_sftp_big.py +++ b/tests/test_sftp_big.py @@ -384,3 +384,10 @@ class BigSFTPTest (unittest.TestCase): finally: sftp.remove('%s/hongry.txt' % FOLDER) t.packetizer.REKEY_BYTES = pow(2, 30) + + +if __name__ == '__main__': + from tests.test_sftp import SFTPTest + SFTPTest.init_loopback() + from unittest import main + main() |