From 818b33c2d16765148eeadf024aa674b2e90e290b Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 28 Oct 2015 16:41:04 +0100 Subject: [PATCH 3/4] add jenkins.sh (#8789) --- jenkins.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 jenkins.sh diff --git a/jenkins.sh b/jenkins.sh new file mode 100755 index 0000000..d5efcee --- /dev/null +++ b/jenkins.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +pip install --upgrade setuptools +pip install --upgrade pip +pip install --editable . +pip install --upgrade pytest pytest-cov pytest-django pytest-mock +pip install --upgrade WebTest==2.0.16 + +DJANGO_SETTINGS_MODULE=welco.settings py.test --junitxml=test_results.xml --cov-report xml --cov=welco/ tests/ -- 2.1.4