diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-24 12:45:58 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-24 12:45:58 -0700 |
commit | 5da128e587ea548dd6b18f3d74726a3493141d7b (patch) | |
tree | faf9fa474116a3fc35bc582202ae9e8a9b4741d7 | |
parent | 0a0ade27f062818428de65fd9f3ddedc31c62e98 (diff) |
Try turning off session scope for sftp_server fixture.
Yesterday, this SEEMED like it did not make a difference
in ability to reproduce hangs. Today...it seems to make
a big difference? So confuse.
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index dd860ff2..d1967a73 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -52,7 +52,7 @@ def make_sftp_folder(): return path -@pytest.fixture(scope='session') +@pytest.fixture#(scope='session') def sftp_server(): """ Set up an in-memory SFTP server thread. Yields the client Transport/socket. |