diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-24 12:45:58 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 14:47:48 -0700 |
commit | 75c907c0ae909e8ba34964c29fad2bb9059edb13 (patch) | |
tree | 53482b1b1e6bebd06ff2e168b5c74b44ccc5d0d3 /tests/conftest.py | |
parent | cf113f11ede2acd906f0b2a3a476b2a081922581 (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.
Diffstat (limited to 'tests/conftest.py')
-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. |