dbfixtures plugin for py.test.
Project description
py.test clean fixtures: mysql, redis, mongo, rabbitmq
Starts specific database deamon and cleanup all data produced during tests.
Install
$ pip install pytest-dbfixtures
How to use
def test_using_mysql(mysqldb):
mysqldb.query("SELECT CURRENT_USER()")
@pytest.fixture(scope='session')
def some_session_fixture(mysqldb_session):
mysqldb_session.query("CREATE DATABASE xyz")
rows = mysqldb_session.query("USE xyz")
def test_using_redis(redisdb):
redisdb.set('woof', 'woof')
woof = redisdb.get('woof')
def test_using_mongo(mongodb):
db = mongodb['test_database']
db.test.insert({'woof': 'woof'})
documents = db.test.find_one()
def test_using_rabbit(rabbitmq):
channel = rabbitmq.channel()
Use your own configure files
Of course you can! Below you can see example configs.
pytest_dbfixtures/dbfixtures.conf
pytest_dbfixtures/redis.conf
pytest_dbfixtures/mongo.conf
pytest_dbfixtures/rabbit.conf
If you want to use your own configs pass them as arguments to py.test.
Examples:
py.test --dbfixtures-config my-dbfixtures.conf py.test --dbfixtures-config my-dbfixtures.conf --mongo-config my-mongo.conf py.test --redis-config my-redis.conf py.test --rabbit-config my-rabbit.conf
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pytest-dbfixtures-0.3.8.6.tar.gz
.
File metadata
- Download URL: pytest-dbfixtures-0.3.8.6.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cc8ef0f5893fae9cb85ce5a3d07cd40eb9355a98be3b3beedc0f9965418895e |
|
MD5 | b450d1dba9c14c9b73a86393597b0f82 |
|
BLAKE2b-256 | 7fff26ec4385389331bc658ce2d2b485ad2d7e6da9f36ec7279cfbe6b699ff86 |