From a45084e4beb3fa16962735d7cebfa9fdac73dc6c Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Fri, 28 Oct 2016 17:42:26 -0300 Subject: [tests] fall back to TestCase classes This test was using pytest, but it was making other trial based tests fail. I couldn't figure out why, but falling back to TestCase solved it. --- testing/tests/couch/conftest.py | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 testing/tests/couch/conftest.py (limited to 'testing/tests/couch/conftest.py') diff --git a/testing/tests/couch/conftest.py b/testing/tests/couch/conftest.py deleted file mode 100644 index 1074f091..00000000 --- a/testing/tests/couch/conftest.py +++ /dev/null @@ -1,31 +0,0 @@ -import couchdb -import pytest -import random -import string - - -@pytest.fixture -def random_name(): - return 'user-' + ''.join( - random.choice( - string.ascii_lowercase) for _ in range(10)) - - -class RandomDatabase(object): - - def __init__(self, couch_url, name): - self.couch_url = couch_url - self.name = name - self.server = couchdb.client.Server(couch_url) - self.database = self.server.create(name) - - def teardown(self): - self.server.delete(self.name) - - -@pytest.fixture -def db(random_name, request): - couch_url = request.config.getoption('--couch-url') - db = RandomDatabase(couch_url, random_name) - request.addfinalizer(db.teardown) - return db -- cgit v1.2.3