2015-03-19 12:15:32 -07:00
|
|
|
:title: Installing
|
2014-05-22 15:24:28 +02:00
|
|
|
|
2015-03-19 12:15:32 -07:00
|
|
|
Installing
|
|
|
|
==========
|
2014-05-22 15:24:28 +02:00
|
|
|
|
2015-03-19 12:15:32 -07:00
|
|
|
The module is known to pip and Debian-based distributions as
|
|
|
|
``gerritlib``.
|
2014-05-22 15:24:28 +02:00
|
|
|
|
2015-03-19 12:15:32 -07:00
|
|
|
``pip``::
|
|
|
|
|
|
|
|
pip install gerritlib
|
|
|
|
|
|
|
|
``easy_install``::
|
|
|
|
|
|
|
|
easy_install gerritlib
|
|
|
|
|
|
|
|
The module has been packaged since Ubuntu Oneiric (11.10)::
|
|
|
|
|
|
|
|
apt-get install gerritlib
|
|
|
|
|
|
|
|
And on Fedora 19 and later::
|
|
|
|
|
|
|
|
yum install gerritlib
|
|
|
|
|
|
|
|
For development::
|
|
|
|
|
|
|
|
python setup.py develop
|
|
|
|
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Documentation is included in the ``doc`` folder. To generate docs
|
|
|
|
locally execute the command::
|
|
|
|
|
2023-01-26 11:37:07 -08:00
|
|
|
nox -s docs
|
2015-03-19 12:15:32 -07:00
|
|
|
|
|
|
|
The generated documentation is then available under
|
|
|
|
``doc/build/html/index.html``.
|
|
|
|
|
|
|
|
Unit Tests
|
|
|
|
----------
|
|
|
|
|
|
|
|
Unit tests are in the ``tests`` folder.
|
|
|
|
To run the unit tests, execute the command::
|
|
|
|
|
2023-01-26 11:37:07 -08:00
|
|
|
nox -s tests
|
2015-03-19 12:15:32 -07:00
|
|
|
|
2023-01-26 11:37:07 -08:00
|
|
|
* Note: Pass ``--force-python 3.x`` to run under other versions of python.
|
2014-05-22 15:24:28 +02:00
|
|
|
|