From cf4dff031c9484b36b6252bac1e024a2e07ab7a0 Mon Sep 17 00:00:00 2001 From: abusquets Date: Fri, 7 Jul 2017 22:03:24 +0200 Subject: [PATCH] Add Django test command. --- config/config.html | 1 + webapp.js | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/config.html b/config/config.html index 2aff239..ec59efb 100644 --- a/config/config.html +++ b/config/config.html @@ -17,6 +17,7 @@ +

diff --git a/webapp.js b/webapp.js index b0b1932..9ff107d 100644 --- a/webapp.js +++ b/webapp.js @@ -7,7 +7,10 @@ module.exports = { }, test: { type: String, - enum: ['none', 'py.test', 'python setup.py test', 'make test'], + enum: [ + 'none', 'py.test', 'python setup.py test', 'make test', + 'python manage.py test' + ], default: 'python setup.py test' }, prepare: {