Merge lp:~ubuntu-sdk-team/ubuntu-ui-toolkit/notIn into lp:ubuntu-ui-toolkit/staging

Proposed by Cris Dywan
Status: Merged
Approved by: Tim Peeters
Approved revision: 1117
Merged at revision: 1117
Proposed branch: lp:~ubuntu-sdk-team/ubuntu-ui-toolkit/notIn
Merge into: lp:ubuntu-ui-toolkit/staging
Diff against target: 67 lines (+8/-8)
1 file modified
tests/qmlapicheck.py (+8/-8)
To merge this branch: bzr merge lp:~ubuntu-sdk-team/ubuntu-ui-toolkit/notIn
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Zsombor Egri Approve
Review via email: mp+224409@code.launchpad.net

Commit message

Change "not…in" to "…not in" in qmlapicheck.py

To post a comment you must log in.
Revision history for this message
Zsombor Egri (zsombi) wrote :

Kewl stuff, thanks!

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:1117
http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-ci/462/
Executed test runs:
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-utopic-touch/1188
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-utopic/1055
    SUCCESS: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-amd64-ci/294
    SUCCESS: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-armhf-ci/294
        deb: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-armhf-ci/294/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-i386-ci/294
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-mako/1527
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-armhf/2060
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-armhf/2060/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/8832
    SUCCESS: http://jenkins.qa.ubuntu.com/job/autopilot-testrunner-otto-utopic/880
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-amd64/1198
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-amd64/1198/artifact/work/output/*zip*/output.zip

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-ci/462/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Autolanding.
More details in the following jenkins job:
http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-autolanding/199/
Executed test runs:
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-utopic-touch/1192/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-utopic/1058
    SUCCESS: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-amd64-autolanding/143
    SUCCESS: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-armhf-autolanding/143
        deb: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-armhf-autolanding/143/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/ubuntu-sdk-team-ubuntu-ui-toolkit-staging-utopic-i386-autolanding/143
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-mako/1529/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-armhf/2065
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-armhf/2065/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/8834
    SUCCESS: http://jenkins.qa.ubuntu.com/job/autopilot-testrunner-otto-utopic/882
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-amd64/1201
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-utopic-amd64/1201/artifact/work/output/*zip*/output.zip

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'tests/qmlapicheck.py'
--- tests/qmlapicheck.py 2014-05-26 16:03:32 +0000
+++ tests/qmlapicheck.py 2014-06-25 10:17:31 +0000
@@ -63,12 +63,12 @@
63 fullpath = folder + '/' + filename63 fullpath = folder + '/' + filename
64 classname = pieces[0]64 classname = pieces[0]
65 version = pieces[1]65 version = pieces[1]
66 if not fullpath in inputfiles:66 if fullpath not in inputfiles:
67 inputfiles.append(fullpath)67 inputfiles.append(fullpath)
68 classes[fullpath] = [classname, version]68 classes[fullpath] = [classname, version]
69 else:69 else:
70 versions = classes[fullpath]70 versions = classes[fullpath]
71 if not classname in versions:71 if classname not in versions:
72 versions.append(classname)72 versions.append(classname)
73 versions.append(version)73 versions.append(version)
74 else:74 else:
@@ -118,7 +118,7 @@
118 # internal without type always relates to the next declared property118 # internal without type always relates to the next declared property
119 annotated_properties['internal'] = 'internal'119 annotated_properties['internal'] = 'internal'
120120
121 if '/*' in line and not '*/' in line:121 if '/*' in line and '*/' not in line:
122 in_comment = True122 in_comment = True
123 continue123 continue
124 if '*/' in line:124 if '*/' in line:
@@ -133,7 +133,7 @@
133 continue133 continue
134134
135 # End of function/ signal/ Item block135 # End of function/ signal/ Item block
136 if '}' in line and not '{' in line:136 if '}' in line and '{' not in line:
137 in_block -= 1137 in_block -= 1
138 block_meta = {}138 block_meta = {}
139 if in_block == 1 and in_builtin_type:139 if in_block == 1 and in_builtin_type:
@@ -162,7 +162,7 @@
162162
163 block_meta[words[0]] = line163 block_meta[words[0]] = line
164 # Omit prototype if it comes before the name since we may skip it164 # Omit prototype if it comes before the name since we may skip it
165 if not 'name' in block_meta and words[0] == 'prototype':165 if 'name' not in block_meta and words[0] == 'prototype':
166 continue166 continue
167167
168 # Don't consider the qml variable name as a keyword168 # Don't consider the qml variable name as a keyword
@@ -183,10 +183,10 @@
183 no_mods = no_mods.replace(mod, '')183 no_mods = no_mods.replace(mod, '')
184 name = no_mods.strip().split(' ')[2]184 name = no_mods.strip().split(' ')[2]
185 if 'internal' in annotated_properties:185 if 'internal' in annotated_properties:
186 if not name in annotated_properties:186 if name not in annotated_properties:
187 annotated_properties[name] = 'internal'187 annotated_properties[name] = 'internal'
188 del annotated_properties['internal']188 del annotated_properties['internal']
189 if not name in annotated_properties:189 if name not in annotated_properties:
190 print(' %s' % (signature))190 print(' %s' % (signature))
191 print('Error: Missing \\qmlproperty for %s' % name)191 print('Error: Missing \\qmlproperty for %s' % name)
192 sys.exit(1)192 sys.exit(1)
@@ -199,7 +199,7 @@
199 break199 break
200200
201 # Start of function/ signal/ Item block201 # Start of function/ signal/ Item block
202 if '{' in line and not '}' in line:202 if '{' in line and '}' not in line:
203 in_block += 1203 in_block += 1
204 block_meta = {}204 block_meta = {}
205 # The parent type can affect API205 # The parent type can affect API

Subscribers

People subscribed via source and target branches