Commit 78c73023 authored by Jérome Perrin's avatar Jérome Perrin

test_result: py3

parent 15ff23d1
......@@ -24,6 +24,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################
from __future__ import division
from Products.ERP5Type.XMLObject import XMLObject
from DateTime import DateTime
import json
......@@ -214,17 +215,17 @@ class ERP5ProjectUnitTestDistributor(XMLObject):
# suites required
int_index = test_suite.getIntIndex()
# we divide per 3 because we have 3 cores per node
node_quantity_min = PRIORITY_MAPPING[int_index][0]/3
node_quantity_max = PRIORITY_MAPPING[int_index][1]/3
node_quantity_min = PRIORITY_MAPPING[int_index][0] // 3
node_quantity_max = PRIORITY_MAPPING[int_index][1] // 3
for x in range(0, node_quantity_min):
score = float(x)/(x+1)
score = float(x) / (x + 1)
all_test_suite_list.append((score, test_suite_url, title))
test_suite_score.setdefault(test_suite_url, []).append(score)
# additional suites, lower score
for x in range(0, node_quantity_max -
node_quantity_min ):
score = float(1) + x/(x+1)
all_test_suite_list.append((1 + x/(x+1), test_suite_url, title))
score = float(1) + x // (x + 1)
all_test_suite_list.append((1 + x // (x + 1), test_suite_url, title))
test_suite_score.setdefault(test_suite_url, []).append(score)
all_test_suite_list.sort(key=lambda x: (x[0], x[2]))
return test_suite_score, [x[1] for x in all_test_suite_list]
......@@ -326,7 +327,7 @@ class ERP5ProjectUnitTestDistributor(XMLObject):
# This allows to affect more test nodes to test suites with higher priority
wanted_test_core_quantity = PRIORITY_MAPPING[test_suite.getIntIndex()][1]
factor = float(max_test_core_per_suite) / wanted_test_core_quantity
missing_quantity = wanted_test_core_quantity/3 - len(test_result.objectValues(portal_type="Test Result Node"))
missing_quantity = wanted_test_core_quantity // 3 - len(test_result.objectValues(portal_type="Test Result Node"))
key = (max_test_core_per_suite - missing_quantity * 3 * factor, modification_date)
else:
key = (0, random.random())
......
......@@ -1676,7 +1676,7 @@ class TestGitlabRESTConnectorInterface(ERP5TypeTestCase):
self.assertEqual(
self.id(),
body['name'])
return (six.moves.http_client.CREATED, {'content-type': 'application/json'}, '{}')
return (six.moves.http_client.CREATED, {'content-type': 'application/json'}, b'{}')
return _callback
def test_start_test(self):
......@@ -1693,7 +1693,7 @@ class TestGitlabRESTConnectorInterface(ERP5TypeTestCase):
rsps.add(
responses.POST,
self.post_commit_status_url,
{})
b'{}')
self.test_result.start()
self.tic()
......@@ -1831,7 +1831,7 @@ class TestGitlabRESTConnectorInterface(ERP5TypeTestCase):
self.assertEqual(
'https://erp5js.example.com/#%s' % self.test_result.getRelativeUrl(),
body['target_url'])
return (six.moves.http_client.CREATED, {'content-type': 'application/json'}, '{}')
return (six.moves.http_client.CREATED, {'content-type': 'application/json'}, b'{}')
with responses.RequestsMock() as rsps:
rsps.add_callback(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment