.. _support:
=======================
Support and Development
=======================
Use the `signac discussion board `_ to
post questions, ask for support, and discuss potential new features.
File bug reports on `signac's issue tracker `_.
Code contributions
==================
This project is open-source.
Users are highly encouraged to contribute directly by implementing new features and fixing issues.
Development for packages as part of the **signac** framework should follow the general development guidelines outlined `here `__.
A brief summary of contributing guidelines are outlined in the `CONTRIBUTING.md `_ file as part of the repository.
All contributors must agree to the `Contributor Agreement `_ before their pull request can be merged.
Set up a development environment
--------------------------------
Start by `forking `_ the project.
Then clone your fork and install the package from source with:
.. code-block:: bash
(signac-dev) ~ $ cd path/to/my/fork/of/signac
(signac-dev) signac $ pip install -e .
The ``-e`` option stands for *editable*, which means that the package is directly loaded from the source code repository.
That means any changes made to the source code are immediately reflected upon reloading the Python interpreter.
The `prek tool `__ is used to enforce code style guidelines.
The development workflow
------------------------
Prior to working on a patch, it is advisable to create an `issue `_ that describes the problem or proposed feature.
This means that the code maintainers and other users get a chance to provide some input on the scope and possible limitations of the proposed changes, as well as advise on the actual implementation.
All code changes should be developed within a dedicated git branch and must all be related to each other.
Unrelated changes, such as minor fixes to unrelated bugs encountered during implementation, spelling errors, and similar typographical mistakes must be developed within a separate branch.
Branches should be named after the following pattern: ``/issue-<#>-optional-short-description``.
Choose from one of the following prefixes depending on the type of change:
* ``fix/``: Any changes that fix the code and documentation.
* ``feature/``: Any changes that introduce a new feature.
* ``release/``: Reserved for release branches.
If your change does not seem to fall into any of the above mentioned categories, use ``misc/``.
Once you are content with your changes, push the new branch to your forked repository and create a pull request into the main repository.
Feel free to push a branch before completion to get input from the maintainers and other users, but make sure to add a comment that clarifies that the branch is not ready for merge yet.
Testing
-------
Prior to fixing an issue, implement unit tests that *fail* for the described problem.
New features must be tested with unit and integration tests.
To run tests, execute:
.. code-block:: bash
(signac-dev) signac $ python -m pytest tests/
Benchmarking
------------
Benchmarks can be run using the `asv (airspeed velocity) `__ tool.
To install the tool, execute:
.. code-block:: bash
(signac-dev) signac $ pip install asv
The ``asv`` tool will install signac into an isolated virtual environment that is used for benchmarking.
Below is a quick reference with some helpful commands:
* ``$ asv run main..mybranch`` benchmarks every commit from ``main`` to ``mybranch``.
* ``$ asv publish`` generates a static HTML site showing benchmark results.
* ``$ asv preview`` hosts a local preview of the generated HTML site.
* ``$ asv dev`` runs benchmarks that are in development.
* ``$ asv profile 'benchmarks.ProjectBench.time_iterate_load_sp(.*)' --gui=snakeviz`` will profile a specific test and visualize results with `snakeviz `__.
For more information on how to use asv, refer to `Using airspeed velocity `__.
Building documentation
----------------------
Building documentation requires the `sphinx `__ package which you will need to install into your development environment.
.. code-block:: bash
(signac-dev) signac $ pip install Sphinx sphinx_rtd_theme
Then you can build the documentation from within the ``doc/`` directory as part of the source code repository:
.. code-block:: bash
(signac-dev) signac $ cd doc/
(signac-dev) doc $ make html
.. note::
Documentation as part of the package should be largely limited to the API.
More elaborate documentation on how to integrate **signac** into a computational workflow should be documented as part of the `framework documentation `_, which is maintained `here `__.
Updating the changelog
----------------------
To update the changelog, add a one-line description to the `changelog.txt `_ file within the ``next`` section.
For example:
.. code-block:: bash
next
----
- Fix issue with launching rockets to the moon.
[0.6.3] -- 2018-08-22
---------------------
- Fix issue related to dynamic data spaces, ...
Just add the ``next`` section in case it doesn't exist yet.