Unverified Commit c6ec21f4 authored by SparkSnail's avatar SparkSnail Committed by GitHub
Browse files

Fix windows remote pipeline (#2861)

parent 5318dd46
...@@ -244,7 +244,10 @@ def run(args): ...@@ -244,7 +244,10 @@ def run(args):
print('skipped {}, training service {} not match [{}]'.format( print('skipped {}, training service {} not match [{}]'.format(
name, args.ts, test_case_config['trainingService'])) name, args.ts, test_case_config['trainingService']))
continue continue
# remote mode need more time to cleanup
if args.ts == 'remote':
wait_for_port_available(8080, 180)
else:
wait_for_port_available(8080, 30) wait_for_port_available(8080, 30)
print('{}Testing: {}{}'.format(GREEN, name, CLEAR)) print('{}Testing: {}{}'.format(GREEN, name, CLEAR))
begin_time = time.time() begin_time = time.time()
......
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