From 53fc8e5ed8a0c0a1b44bc0e9ce809be8be550645 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 19 Oct 2012 22:27:04 +0100 Subject: [PATCH] Added Jenkins testing support --- .gitignore | 2 ++ django_ett/django_ett/settings/test.py | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 django_ett/django_ett/settings/test.py diff --git a/.gitignore b/.gitignore index c1d6cb2..5004ab9 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ pip-log.txt # Unit test / coverage reports .coverage .tox +reports #Translations *.mo @@ -31,3 +32,4 @@ pip-log.txt #databases *.sqlite3 + diff --git a/django_ett/django_ett/settings/test.py b/django_ett/django_ett/settings/test.py new file mode 100644 index 0000000..ec3ea37 --- /dev/null +++ b/django_ett/django_ett/settings/test.py @@ -0,0 +1,20 @@ +from .common import * + +INSTALLED_APPS += ( + 'django_jenkins', +) + +PROJECT_APPS = [ + 'etasks', +] + +JENKINS_TASKS = ( + 'django_jenkins.tasks.run_pylint', + 'django_jenkins.tasks.with_coverage', + 'django_jenkins.tasks.django_tests', + 'django_jenkins.tasks.run_pep8', + 'django_jenkins.tasks.run_pyflakes', +) + + +print INSTALLED_APPS \ No newline at end of file