mirror of
https://github.com/nikdoof/vapemap.git
synced 2026-01-30 17:48:24 +00:00
Added basic Jenkins testing support.
This commit is contained in:
17
app/vapemap/conf/test.py
Normal file
17
app/vapemap/conf/test.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from .base import *
|
||||||
|
|
||||||
|
INSTALLED_APPS += [
|
||||||
|
'django-jenkins',
|
||||||
|
]
|
||||||
|
|
||||||
|
PROJECT_APPS = [
|
||||||
|
'stores',
|
||||||
|
]
|
||||||
|
|
||||||
|
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',
|
||||||
|
)
|
||||||
4
requirements-testing.txt
Normal file
4
requirements-testing.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
pep8
|
||||||
|
pyflakes
|
||||||
|
http://download.logilab.org/pub/common/logilab-common-0.58.2.tar.gz
|
||||||
|
-e git://github.com/kmmbvnr/django-jenkins.git#egg=django-jenkins
|
||||||
Reference in New Issue
Block a user