Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 963 Bytes

CONTRIBUTING.md

File metadata and controls

58 lines (36 loc) · 963 Bytes

Contributing to wptools

Check out our wiki

https://github.com/siznax/wptools/wiki

Report a bug

https://github.com/siznax/wptools/issues

  1. See if the issue already exists
  2. Comment, or open new issue if necessary

Submit code

  1. Create a virtualenv
  2. Fork the repo into it
  3. Install requirements
  4. Basic and advanced tests should pass
  5. flake8 and pylint your contribution
  6. Make sure advanced tests still pass
  7. Submit a pull request

Install requirements

[env]$ pip install -r requirements.txt

Basic tests

Travis uses nosetests (see .travis.yml)

[env]$ nosetests tests/test_basic.py

Advanced tests

[env]$ python tests/test_advanced.py all

Further reading

See also python-requests Contribution Guidelines

@siznax