2018-12-26 15:00:47 +00:00
|
|
|
.. _tutor:
|
|
|
|
|
|
|
|
Tutor development
|
|
|
|
=================
|
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
Start by cloning the Tutor repository::
|
2018-12-26 15:00:47 +00:00
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
git clone https://github.com/regisb/tutor.git
|
|
|
|
cd tutor/
|
2018-12-26 15:00:47 +00:00
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
Install requirements
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
pip install -r requirements/dev.txt
|
|
|
|
|
2019-03-23 23:16:03 +00:00
|
|
|
Run tests
|
|
|
|
---------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
make test
|
|
|
|
|
|
|
|
Yes, there are very few tests for now, but this is probably going to change.
|
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
Bundle ``tutor`` executable
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
make bundle
|
|
|
|
|
|
|
|
Generate the documentation
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
pip install sphinx sphinx_rtd_theme
|
|
|
|
cd docs/
|
|
|
|
make html
|
|
|
|
|
|
|
|
You can then browse the documentation with::
|
|
|
|
|
|
|
|
make browse
|
2019-02-13 22:44:42 +00:00
|
|
|
|
|
|
|
Releasing a new version
|
|
|
|
-----------------------
|
|
|
|
|
2019-02-18 08:22:41 +00:00
|
|
|
- Bump the ``__version__`` value in ``tutor/__about__.py``.
|
2019-02-13 22:44:42 +00:00
|
|
|
- Replace "Latest" by the version name in CHANGELOG.md.
|
|
|
|
- Create a commit with the version changelog.
|
2019-02-18 08:22:41 +00:00
|
|
|
- ``git push``
|
2019-03-21 21:51:35 +00:00
|
|
|
- ``make release``
|
|
|
|
|
|
|
|
After a regular push to ``master``, run ``make nightly`` to update the "nightly" tag.
|