From cbb1e303890bea4bd061257149bc2007c3ae50f6 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 26 Aug 2013 17:37:33 +0200 Subject: [PATCH] add a script for the continous integration server --- jenkins.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 jenkins.sh diff --git a/jenkins.sh b/jenkins.sh new file mode 100755 index 0000000..ae2aa92 --- /dev/null +++ b/jenkins.sh @@ -0,0 +1,7 @@ +pip install --upgrade pip +pip install --upgrade pylint +pip install --upgrade -v -r requirements.txt +./docbow-ctl syncdb --noinput +./docbow-ctl migrate +./docbow-ctl validate +(pylint -f parseable --rcfile /var/lib/jenkins/pylint.django.rc docbow_project/ | tee pylint.out) || /bin/true