Emphasize installing dependencies before testing (#1148)

As a beginner in Python it wasn't clear that `poetry install` needed to be run before `make test` for instance. That threw a sort of obscure error until I figured it out what the solution was. This is extremely minor, but make sure installing dependencies is the very first instruction can reduce some friction when contributing.
This commit is contained in:
Gustavo Matias 2021-01-09 11:07:03 -08:00 committed by GitHub
parent c155bafa84
commit 6980ed1906
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,9 +85,9 @@ You can find an inventory of commands in the `makefile`. \*nix users can run the
A typical development workflow includes:
* Installing dependencies: `poetry install`
* Running tests: `make test`
* Running the source in a virtual environment:
* `poetry install`
* `poetry shell`
* `jrnl` (with or without arguments as necessary)
* Linting the code to standardize its style: `make lint`