Development

If you’d like to hack on CSVSee, you’ll probably want to install the development dependencies first:

$ pip install -r dev-req.txt

Testing

New in version 0.2.

CSVSee’s core modules include several doctests, along with a suite of unit tests in the tests directory that can be run with py.test:

$ py.test

To generate a coverage report, you can just get a plain-text report:

$ py.test --cov csvsee --cov-report=term-missing

Or a nice HTML report:

$ py.test --cov csvsee --cov-report=html

Project Versions

Table Of Contents

Previous topic

Usage

Next topic

API

This Page