From bfd917fa20ae6c8060ce5d44b9152fbf2535415b Mon Sep 17 00:00:00 2001 From: Oliver Haas Date: Fri, 31 Jan 2025 23:21:08 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20update=20development=20instructions=20t?= =?UTF-8?q?o=20include=20directory=20change=20and=E2=80=A6=20(#937)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/overview/development.md | 7 +++++++ 1 file changed, 7 insertions(+) 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