Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.63 KB

CONTRIBUTING.md

File metadata and controls

48 lines (33 loc) · 1.63 KB

Contributing

Thank you for helping pyobservable to get a better piece of software.

Support

If you have any questions regarding the usage of pyobservable as a BDD tool please use StackOverflow.

Reporting Issues / Proposing Features

Before you submit an Issue or proposing a Feature check the existing Issues in order to avoid duplicates.
Please make sure you provide enough information to work on your submitted Issue or proposed Feature:

  • Which version of pyobservable are you using?
  • Which version of python are you using?
  • On which platform are you running pyobservable?

Pull Requests

We are very happy to receive Pull Requests considering:

  • Style Guide. Follow the rules of PEP8, but you may ignore too-long-lines and similar warnings. There is a pylintrc file for more information.
  • Tests. If our change affects python code inside the source code directory, please make sure your code is covered by an automated test case.

Testing

To test the pyobservable source code against all supported python versions you should use tox:

cd ~/work/pyobservable
pip install tox
tox

However, if you want to test your code on certain circumstances you can create a virtualenv:

cd ~/work/pyobservable
virtualenv env
source env/bin/activate
pip install -r development.txt
pip install .
nosetests --rednose -v tests/ --with-cover --cover-package=pyobservable

AUTHORS file

Please feel free to open a Pull Request and add yourself to the AUTHORS file.
Well, ... only if you've done some considerable changes - naturally 🍻