Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ quality: ## check coding style with pycodestyle and pylint

requirements: ## install development environment requirements
pip install -qr requirements/pip-tools.txt
pip-sync requirements/dev.txt requirements/private.*
pip-sync requirements/dev.txt requirements/test.txt requirements/private.*
pip install -e .

test: clean ## run tests in the current virtualenv
pytest
Expand Down
7 changes: 4 additions & 3 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ below is executed within the virtualenv.
.. _virtualenv: https://virtualenvwrapper.readthedocs.org/en/latest/


Install the tool
----------------
Install the requirements
------------------------
This will also install the Code Annotations package as editable, to allow access to the Stevedore plugins.

.. code-block:: bash
$ make requirements
$ pip install -e .
Run the tests
Expand Down