1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .. include:: global.rst.inc
- .. _development:
- Development
- ===========
- This chapter will get you started with |project_name|' development.
- |project_name| is written in Python (with a little bit of Cython and C for
- the performance critical parts).
- Building a development environment
- ----------------------------------
- First, just install borg into a virtual env as described before.
- To install some additional packages needed for running the tests, activate your
- virtual env and run::
- pip install -r requirements.d/development.txt
- Running the tests
- -----------------
- The tests are in the borg/testsuite package.
- To run all the tests, you need to have fakeroot installed. If you do not have
- fakeroot, you still will be able to run most tests, just leave away the
- `fakeroot -u` from the given command lines.
- To run the test suite use the following command::
- fakeroot -u tox # run all tests
- Some more advanced examples::
- # verify a changed tox.ini (run this after any change to tox.ini):
- fakeroot -u tox --recreate
- fakeroot -u tox -e py32 # run all tests, but only on python 3.2
- fakeroot -u tox borg.testsuite.locking # only run 1 test module
- fakeroot -u tox borg.testsuite.locking -- -k '"not Timer"' # exclude some tests
- fakeroot -u tox borg.testsuite -- -v # verbose py.test
- Important notes:
- - When using -- to give options to py.test, you MUST also give borg.testsuite[.module].
- Building the docs with Sphinx
- -----------------------------
- The documentation (in reStructuredText format, .rst) is in docs/.
- To build the html version of it, you need to have sphinx installed::
- pip3 install sphinx
- Now run::
- cd docs/
- make html
- Then point a web browser at docs/_build/html/index.html.
- Creating a new release
- ----------------------
- Checklist::
- - all issues for this milestone closed?
- - any low hanging fruit left on the issue tracker?
- - run tox on all supported platforms via vagrant, check for test fails.
- - is Travis CI happy also?
- - update CHANGES.rst (compare to git log). check version number of upcoming release.
- - check MANIFEST.in and setup.py - are they complete?
- - tag the release::
- git tag -s -m "tagged release" 0.26.0
- - create a release on PyPi::
- python setup.py register sdist upload --identity="Thomas Waldmann" --sign
- - close release milestone.
- - announce on::
- - mailing list
- - Twitter
- - IRC channel (topic)
- - create binary wheels and link them from issue tracker: https://github.com/borgbackup/borg/issues/147
|