mirror of https://github.com/citusdata/citus.git
In run_test.py actually return worker_count (#6830)
Fixes a small mistake that was missed in the refactor of run_test.py that was done in #6816.pull/6824/head
parent
eda3cc418a
commit
d04d32b314
|
@ -354,6 +354,7 @@ def needed_worker_count(test_name, dependencies):
|
|||
worker_count = worker_count_for(test_name)
|
||||
for dependency in dependencies.extra_tests():
|
||||
worker_count = max(worker_count_for(dependency), worker_count)
|
||||
return worker_count
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in New Issue