Added pylint test to jenkins script, and fixed a format error.

This commit is contained in:
Tomas Groth 2016-08-02 20:57:10 +02:00
parent 7ca7ae9c07
commit c473212107
2 changed files with 3 additions and 2 deletions

View File

@ -167,7 +167,7 @@ class ScreenList(object):
:param number: The screen number (int). :param number: The screen number (int).
""" """
log.info('remove_screen {number:d}'.forma(number=number)) log.info('remove_screen {number:d}'.format(number=number))
for screen in self.screen_list: for screen in self.screen_list:
if screen['number'] == number: if screen['number'] == number:
self.screen_list.remove(screen) self.screen_list.remove(screen)

View File

@ -63,9 +63,10 @@ class OpenLPJobs(object):
Branch_Windows_Interface = 'Branch-04b-Windows_Interface_Tests' Branch_Windows_Interface = 'Branch-04b-Windows_Interface_Tests'
Branch_PEP = 'Branch-05a-Code_Analysis' Branch_PEP = 'Branch-05a-Code_Analysis'
Branch_Coverage = 'Branch-05b-Test_Coverage' Branch_Coverage = 'Branch-05b-Test_Coverage'
Branch_Pylint = 'Branch-05c-Code_Analysis2'
Jobs = [Branch_Pull, Branch_Functional, Branch_Interface, Branch_Windows_Functional, Branch_Windows_Interface, Jobs = [Branch_Pull, Branch_Functional, Branch_Interface, Branch_Windows_Functional, Branch_Windows_Interface,
Branch_PEP, Branch_Coverage] Branch_PEP, Branch_Coverage, Branch_Pylint]
class Colour(object): class Colour(object):