.. _contributing: ************ Contributing ************ If you are thinking about making Mopidy better, or you just want to hack on it, that’s great. Here are some tips to get you started. Getting started =============== 1. Make sure you have a `GitHub account `_. 2. `Submit `_ a ticket for your issue, assuming one does not already exist. Clearly describe the issue including steps to reproduce when it is a bug. 3. Fork the repository on GitHub. Making changes ============== 1. Clone your fork on GitHub to your computer. 2. Install dependencies as described in the :ref:`installation` section. 3. Checkout a new branch (usually based on ``develop``) and name it accordingly to what you intend to do. - Features get the prefix ``feature/`` - Bug fixes get the prefix ``fix/`` - Improvements to the documentation get the prefix ``docs/`` .. _run-from-git: Running Mopidy from Git ======================= If you want to hack on Mopidy, you should run Mopidy directly from the Git repo. 1. Go to the Git repo root:: cd mopidy/ 2. To get a ``mopidy`` executable and register all bundled extensions with setuptools, run:: python setup.py develop It still works to run ``python mopidy`` directly on the ``mopidy`` Python package directory, but if you have never run ``python setup.py develop`` the extensions bundled with Mopidy isn't registered with setuptools, so Mopidy will start without any frontends or backends, making it quite useless. 3. Now you can run the Mopidy command, and it will run using the code in the Git repo:: mopidy If you do any changes to the code, you'll just need to restart ``mopidy`` to see the changes take effect. Testing ======= Mopidy has quite good test coverage, and we would like all new code going into Mopidy to come with tests. 1. To run tests, you need a couple of dependencies. They can be installed using ``pip``:: pip install -r requirements/tests.txt 2. Then, to run all tests, go to the project directory and run:: nosetests To run tests with test coverage statistics, remember to specify the tests dir:: nosetests --with-coverage tests/ 3. Check the code for errors and style issues using flake8:: flake8 . For more documentation on testing, check out the `nose documentation `_. Submitting changes ================== - One branch per feature or fix. Keep branches small and on topic. - Follow the :ref:`code style `, especially make sure ``flake8`` does not complain about anything. - Write good commit messages. Here's three blog posts on how to do it right: - `Writing Git commit messages `_ - `A Note About Git Commit Messages `_ - `On commit messages `_ - Send a pull request to the ``develop`` branch. See the `GitHub pull request docs `_ for help. Additional resources ==================== - IRC channel: ``#mopidy`` at `irc.freenode.net `_ - `Issue tracker `_ - `Mailing List `_ - `GitHub documentation `_