diff --git a/Makefile b/Makefile index cdc8f64..4a58f67 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 1b8da62..480aa52 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -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