diff options
author | 2017-10-18 07:56:58 +0300 | |
---|---|---|
committer | 2017-10-18 07:56:58 +0300 | |
commit | 433a8256e31f755f5e236491bbe39d3db24d6d6d (patch) | |
tree | 45f483eab1ea1654ee21a3b51c5b8bf1a8ebaffa /iceci/views.py | |
parent | f8907f0c4fc0ba4bb97a1d636a50c5b40c2642f2 (diff) |
Align CI test test and JJB
Add vendor agnostic CI test to align
Add Tox and maven docker
Issue Id: VVP-15
Change-Id: I69f0c1036e6f72b62bddc822544c55200af7b37d
Signed-off-by: Edan Binshtok <eb578m@intl.att.com>
Diffstat (limited to 'iceci/views.py')
-rw-r--r-- | iceci/views.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/iceci/views.py b/iceci/views.py index 7e0505d..6a5a9b8 100644 --- a/iceci/views.py +++ b/iceci/views.py @@ -47,7 +47,7 @@ from rest_framework.renderers import JSONRenderer from iceci import mail from iceci.mail import testsResults_mail_body -from services.constants import Constants +from services.constants import Constants, ServiceProvider from services.logging_service import LoggingServiceFactory from .models import TestResults @@ -60,7 +60,8 @@ LAST_BUILD_REPORT_NUM = None logger = LoggingServiceFactory.get_logger() def index(request): - return HttpResponse("Hello, world. You're at the "+Constants.FEGeneral.ProgramName.name+" ci index.") + return HttpResponse("Hello, world. You're at the " + + ServiceProvider.PROGRAM_NAME + " ci index.") @csrf_exempt def testResult_list(request): # List all tests, or create a new test. |