This repository was archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation - testing/development
* add sphinx_rtd_theme theme to dev requirements * change theme to sphinx_rtd_theme * fix section headers - use chapters where needed * refresh documentation where needed * add docs on development and testing Closes #81 and #82
- Loading branch information
Rafal Wojdyla
committed
Oct 9, 2014
1 parent
b687347
commit f3ba22d
Showing
10 changed files
with
225 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ dist/ | |
.tox | ||
*.swp | ||
.DS_Store | ||
doc/html | ||
doc/doctrees |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
*********** | ||
Development | ||
*********** | ||
|
||
How to start | ||
============ | ||
|
||
We try to make it as easy as possible to start development on snakebite. | ||
We recommend to use virtualenv (+ virtualenvwrapper) for development purposes, | ||
it's not required to but highly recommended. To install, and create development | ||
environment for snakebite: | ||
|
||
1. install virtualenvwrapper: | ||
``$ pip install virtualenvwrapper`` | ||
2. create development environment: | ||
``$ mkvirtualenv snakebite_dev`` | ||
|
||
More about virtualenvwrapper and virtualenv `here <http://virtualenvwrapper.readthedocs.org/en/latest/>`_ | ||
|
||
Below is the list of recommended steps to start development: | ||
|
||
1. clone repo: | ||
``$ git clone [email protected]:spotify/snakebite.git`` | ||
2. fetch all developer requirements: | ||
``$ pip install -r requirements-dev.txt`` | ||
3. run tests: | ||
``$ python setup.py test`` | ||
|
||
If tests succeeded you are ready to hack! Remember to always test | ||
your changes and please come back with a PR <3 | ||
|
||
Open issues | ||
=========== | ||
|
||
If you're looking for open issues please take a look `here <https://github.com/spotify/snakebite/issues>`_. | ||
|
||
Thanks! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
*********** | ||
Minicluster | ||
=========== | ||
*********** | ||
.. automodule:: minicluster | ||
|
||
.. autoclass:: MiniCluster | ||
:members: | ||
:members: |
Oops, something went wrong.