As part of an ongoing effort to improve our tests, I'd like to re-arrange our branch tests the way I re-arranged the trunk tests. This updates the script, and once it is merged, I'll update Jenkins to match and send a mail to the list to alert everyone.

bzr-revno: 2800
This commit is contained in:
Raoul Snyman 2017-12-23 14:52:35 -07:00
commit e583d63690

View File

@ -57,16 +57,17 @@ class OpenLPJobs(object):
This class holds any jobs we have on jenkins and we actually need in this script. This class holds any jobs we have on jenkins and we actually need in this script.
""" """
Branch_Pull = 'Branch-01-Pull' Branch_Pull = 'Branch-01-Pull'
Branch_Functional = 'Branch-02-Functional-Tests' Branch_Linux_Tests = 'Branch-02a-Linux-Tests'
Branch_Interface = 'Branch-03-Interface-Tests' Branch_macOS_Tests = 'Branch-02b-macOS-Tests'
Branch_PEP = 'Branch-04a-Code_Analysis' Branch_Build_Source = 'Branch-03a-Build-Source'
Branch_Coverage = 'Branch-04b-Test_Coverage' Branch_Build_macOS = 'Branch-03b-Build-macOS'
Branch_Pylint = 'Branch-04c-Code_Analysis2' Branch_Code_Analysis = 'Branch-04a-Code-Analysis'
Branch_AppVeyor = 'Branch-05-AppVeyor-Tests' Branch_Test_Coverage = 'Branch-04b-Test-Coverage'
Branch_macOS = 'Branch-07-macOS-Tests' Branch_Lint_Check = 'Branch-04c-Lint-Check'
Branch_AppVeyor_Tests = 'Branch-05-AppVeyor-Tests'
Jobs = [Branch_Pull, Branch_Functional, Branch_Interface, Branch_PEP, Branch_Coverage, Branch_Pylint, Jobs = [Branch_Pull, Branch_Linux_Tests, Branch_macOS_Tests, Branch_Build_Source, Branch_Build_macOS,
Branch_AppVeyor, Branch_macOS] Branch_Code_Analysis, Branch_Test_Coverage, Branch_AppVeyor_Tests]
class Colour(object): class Colour(object):