diff options
author | drebs <drebs@riseup.net> | 2017-08-14 01:17:20 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-23 01:54:56 -0400 |
commit | 723790a19bbee32c5be69c5048ef6ceb595fdd93 (patch) | |
tree | 61547affa88931ff602bf162c01a5a7259490555 /testing/tests/conftest.py | |
parent | d3723812190683c5b33e66a0e4b4408093921bb9 (diff) |
[bug] retain tempdir name in soledad server fixture
Diffstat (limited to 'testing/tests/conftest.py')
-rw-r--r-- | testing/tests/conftest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/tests/conftest.py b/testing/tests/conftest.py index 16ab699d..40ad5568 100644 --- a/testing/tests/conftest.py +++ b/testing/tests/conftest.py @@ -109,6 +109,7 @@ class SoledadServer(object): def __init__(self, tmpdir_factory, couch_url): tmpdir = tmpdir_factory.mktemp('soledad-server') + self.tmpdir = tmpdir self._pidfile = os.path.join(tmpdir.strpath, 'soledad-server.pid') self._logfile = os.path.join(tmpdir.strpath, 'soledad-server.log') self._couch_url = couch_url |