diff options
author | Zhe Sun <31067185+ZheSun88@users.noreply.github.com> | 2021-10-15 18:04:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 18:04:54 +0300 |
commit | 9ef5665b9cbf498396dbf70c94fb4d05b4eea34c (patch) | |
tree | 9b352919eaec8767f073ef656c9f9bbab3a253be /scripts | |
parent | b3b2eb503da52f52613203a98d3e3675ae5062e4 (diff) | |
download | vaadin-framework-9ef5665b9cbf498396dbf70c94fb4d05b4eea34c.tar.gz vaadin-framework-9ef5665b9cbf498396dbf70c94fb4d05b4eea34c.zip |
align the python script for releasing with 8.14 (#12437)
Also update the failed build checking.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/GenerateBuildTestAndStagingReport.py | 4 | ||||
-rw-r--r-- | scripts/GeneratePostPublishReport.py | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/scripts/GenerateBuildTestAndStagingReport.py b/scripts/GenerateBuildTestAndStagingReport.py index fb8874543e..791c346f46 100644 --- a/scripts/GenerateBuildTestAndStagingReport.py +++ b/scripts/GenerateBuildTestAndStagingReport.py @@ -47,7 +47,9 @@ def getTestStatusHtml(): return createTableRow(traffic_light.format(color="black"), "Test status: unable to retrieve status of tests") else: test_failures_json = test_failures_request.json() - if test_failures_json["count"] == 0: + # nowadays the responds doesn't contain count keyword when the build is successful + # while count word can be found when build fails + if "count" not in test_failures_json: return createTableRow(traffic_light.format(color="green"), "Test status: all tests passing") else: return createTableRow(traffic_light.format(color="red"), "Test status: there are " + str(test_failures_json["count"]) + " failing tests, <a href={}>check the build report</a>".format(buildResultUrl)) diff --git a/scripts/GeneratePostPublishReport.py b/scripts/GeneratePostPublishReport.py index 4b11daf754..12ed7cf883 100644 --- a/scripts/GeneratePostPublishReport.py +++ b/scripts/GeneratePostPublishReport.py @@ -33,7 +33,7 @@ def checkArchetypeMetaData(archetypeMetadataUrl, version): if archetype_metadata_request.status_code != 200: return createTableRow(traffic_light.format(color="black"), "Check archetype metadata: <a href='{url}'>unable to retrieve metadata from {url}</a>".format(url=archetypeMetadataUrl)) else: - if "version=\"{version}\"".format(version=version) in archetype_metadata_request.content: + if "version=\"{version}\"".format(version=version) in archetype_metadata_request.text: return createTableRow(traffic_light.format(color="green"), "Check archetype metadata: <a href='{url}'>metadata is correct for {url}</a>".format(url=archetypeMetadataUrl)) else: return createTableRow(traffic_light.format(color="red"), "Check archetype metadata: <a href='{url}'>metadata seems to be incorrect for {url}</a>".format(url=archetypeMetadataUrl)) @@ -66,5 +66,5 @@ content += createTableRow("", "<a href=\"https://github.com/vaadin/framework/rel content += "</table></body></html>" -with open("result/report.html", "wb") as f: +with open("result/report.html", "w") as f: f.write(content) |