summaryrefslogtreecommitdiff
path: root/testing/tests/couch/conftest.py
diff options
context:
space:
mode:
authorVictor Shyba <victor1984@riseup.net>2016-10-28 17:42:26 -0300
committerdrebs <drebs@leap.se>2016-12-12 09:12:00 -0200
commita45084e4beb3fa16962735d7cebfa9fdac73dc6c (patch)
tree970451b6e92e696ee134af858a434d19e42862bf /testing/tests/couch/conftest.py
parent2505f61f7374cd0afeb9392c03589607d7b63b64 (diff)
[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.
Diffstat (limited to 'testing/tests/couch/conftest.py')
-rw-r--r--testing/tests/couch/conftest.py31
1 files changed, 0 insertions, 31 deletions
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