diff --git a/docs/overview/development.md b/docs/overview/development.md index af7aa5c0..4952c364 100644 --- a/docs/overview/development.md +++ b/docs/overview/development.md @@ -10,6 +10,7 @@ This makes a copy of the repository in your own name. Now you can clone this rep ```sh git clone https://github.com//django-components.git +cd django-components ``` To quickly run the tests install the local dependencies by running: @@ -18,6 +19,12 @@ To quickly run the tests install the local dependencies by running: pip install -r requirements-dev.txt ``` +You also have to install this local django-components version, initially and after every change you want to test: + +```sh +pip install . +``` + Now you can run the tests to make sure everything works as expected: ```sh