Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 937 Bytes

README.rst

File metadata and controls

37 lines (22 loc) · 937 Bytes

fowler.switchboard

https://travis-ci.org/dimazest/fowler.switchboard.png?branch=master https://coveralls.io/repos/dimazest/fowler.switchboard/badge.png?branch=master

Development

To run the tests execute:

python setup.py test

To run the tests on all supperoted Python versions and implementations run:

tox

To install the package in an isolated environment for development run:

virtualenv .
source bin/activate

pip install -e .
pip install pytest>=2.4.2  # And any other tools you find useful.

Now you are ready to develop and test your changes:

py.test test

If you want to execute some of the tests run (for example, IO related):

py.test test -k io

Read py.test documentation and have fun coding!