Fix syntax in BK CI script (#17462)

This commit is contained in:
Andrea Selva 2025-04-01 12:26:07 +02:00 committed by GitHub
parent 26af21df85
commit 422cd4e06b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -258,7 +258,7 @@ ci/unit_tests.sh ruby
) )
def integration_test_parts(self, parts) -> list[JobRetValues]: def integration_test_parts(self, parts) -> list[JobRetValues]:
return list(map(lambda idx: integration_tests(self, idx+1, parts), range(parts)) return list(map(lambda idx: integration_tests(self, idx+1, parts), range(parts)))
def integration_tests(self, part: int, parts: int) -> JobRetValues: def integration_tests(self, part: int, parts: int) -> JobRetValues:
step_name_human = f"Integration Tests - {part}/{parts}" step_name_human = f"Integration Tests - {part}/{parts}"
@ -277,7 +277,7 @@ ci/integration_tests.sh split {part-1} {parts}
) )
def pq_integration_test_parts(self, parts) -> list[JobRetValues]: def pq_integration_test_parts(self, parts) -> list[JobRetValues]:
return list(map(lambda idx: pq_integration_tests(self, idx+1, parts), range(parts)) return list(map(lambda idx: pq_integration_tests(self, idx+1, parts), range(parts)))
def pq_integration_tests(self, part: int, parts: int) -> JobRetValues: def pq_integration_tests(self, part: int, parts: int) -> JobRetValues:
step_name_human = f"IT Persistent Queues - {part}/{parts}" step_name_human = f"IT Persistent Queues - {part}/{parts}"