Update README to include warning about make check.

This commit is contained in:
Nicholas H.Tollervey 2019-09-06 12:29:25 +01:00
parent b810f3c0bc
commit 0068c461f8
No known key found for this signature in database
GPG key ID: FD2A04F69841B6FA

View file

@ -137,12 +137,20 @@ Developer Setup
Clone the repository then make a virtualenv. From the root of the project,
install the requirements::
pip install -r ".[dev]"
pip install -e ".[dev]"
Run the test suite::
make check
.. warning::
Whenever you run ``make check``, to ensure the test suite starts from a
known clean state, all auto-generated assets are deleted. This includes
assets generated by running ``pip install -e ".[dev]"``, including the
``circup`` command itself. Simply re-run ``pip`` to re-generate the
assets.
There is a Makefile that helps with most of the common workflows associated
with development. Typing "make" on its own will list the options thus::