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
committerVictor Shyba <victor1984@riseup.net>2016-11-18 15:55:52 -0300
commit8072416b93fdc8efcf8aae9e61fbaa89916cda21 (patch)
treeca8f9e40b3ff8aad2ccd956f5f2a942ffd300b37 /testing/tests/couch/conftest.py
parent2f775686dec1a1d67ec7b28e8b10ee6f5c8e0d32 (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