From a30929804ba54a3fe6337e15afe4d3b95a977538 Mon Sep 17 00:00:00 2001
From: root <Yorgo EL MOUBAYED>
Date: Tue, 11 May 2021 11:22:51 +0200
Subject: [PATCH] Update README.md

---
 README.md | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 8b080a5..721b52a 100644
--- a/README.md
+++ b/README.md
@@ -37,47 +37,52 @@ django-admin.py startproject <project name>
 
 Create an application inside a project
 ~~~
-python manage.py <app name>
+python3 manage.py <app name>
 ~~~
 
 Apply migrations
 ~~~
-python manage.py migrate
+python3 manage.py migrate
 ~~~
 
 Create new migrations based on the changes made to the models
 ~~~
-python manage.py makemigrations
+python3 manage.py makemigrations
 ~~~
 
 Open a python shell to test query sets
 ~~~
-python manage.py shell
+python3 manage.py shell
 ~~~
 
 Run an emulated server on the local machine
 ~~~
-python manage.py runserver <optional port number>
+python3 manage.py runserver <optional port number>
 ~~~
 
 Create a super user to access the admin panel
 ~~~
-python manage.py createsuperuser
+python3 manage.py createsuperuser
 ~~~
 
 Create a cache table 
 ~~~
-python manage.py createcachetable
+python3 manage.py createcachetable
+~~~
+
+Run tests
+~~~
+python3 manage.py test <option test module name>
 ~~~
 
 Apply constraints and indexes on labels for the node definitions. This should be executed after any schema changes
 ~~~
-python manage.py install_labels 
+python3 manage.py install_labels
 ~~~
 
 Delete all nodes in the database.
 ~~~
-python manage.py clear_neo4j
+python3 manage.py clear_neo4j
 ~~~
 
 ## Links to documentations
-- 
GitLab