mirror of
https://github.com/elastic/logstash.git
synced 2025-04-17 19:35:03 -04:00
Fix syntax in BK CI script (#17462)
This commit is contained in:
parent
26af21df85
commit
422cd4e06b
1 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,7 @@ ci/unit_tests.sh ruby
|
|||
)
|
||||
|
||||
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:
|
||||
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]:
|
||||
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:
|
||||
step_name_human = f"IT Persistent Queues - {part}/{parts}"
|
||||
|
|
Loading…
Add table
Reference in a new issue