Nose plugin for recording test results to a database
Project description
Introduction
nosedbreport exposes a single plugin that can front various backend databases to store the result of a nose test execution. Having the results of your tests, whether they are part of a continuous integration system or not, allows you to ask interesting questions about your project such as
What were the test suites that ran in the last five minutes
What is the average time to run test case ‘x’
What is the standard time to failure for test suite ‘y’
and so on…
These questions also allow you to build reporting, and monitoring tools based on automated functional tests that you may be running against your development, staging or production systems, such as heartbeat or availability pages.
Installation
with easy_install
sudo easy_install nosedbreport
with pip
sudo pip install nosedbreport
from source (git repository):
hg clone http://github.com/mig33/nosedbreport cd nosedbreport python setup.py build sudo python setup.py install
Usage
- The most basic use case is to report the results of a test run into a mysql database,
which can be achieved by adding the following options to your nose execution:
nosetests --dbreport-dbtype=mysql --dbreport-host=your.mysql.com\ --dbreport-username=ali --dbreport-password=some-pass --dbreport-db=nosereport
To create the appropriate schema in your mysql database:
nosetests --dbreport-dbtype=mysql --dbreport-host=your.mysql.com\ --dbreport-username=root --dbreport-password=your-root-pass\ --dbreport-db=nosereport --dbreport-create-schema
For detailed usage refer to read the docs
Project details
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 nosedbreport-0.2.7.tar.gz
.
File metadata
- Download URL: nosedbreport-0.2.7.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fed395dd4713828c1d22c4c8e3a9c5f2da1e883bede3c0f5b2113cfbb04d914 |
|
MD5 | 9ddbc23f036214dcaa9ee17f5300996c |
|
BLAKE2b-256 | d64dc70b4564c01e13bf7fd30a184618202ee2d9ec4e11df303c69d5e9424a52 |