Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Fix windows remote pipeline #2861

Merged
merged 30 commits into from
Sep 7, 2020
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5982baa
fix endpoint
Feb 10, 2020
5653624
add private key
Feb 10, 2020
e5ee726
Merge branch 'master' of https://github.com/microsoft/nni into dev-re…
Feb 10, 2020
1cb2349
fix torchversion
Feb 10, 2020
e53d4ec
Merge branch 'master' of https://github.com/microsoft/nni into dev-re…
Feb 11, 2020
99b0c08
add debug info
Feb 11, 2020
fe60ba5
add port in pscp.exe
Feb 11, 2020
52aa6ad
fix remote pipeline
Feb 13, 2020
533c504
Merge branch 'v1.4' of https://github.com/microsoft/nni into dev-remo…
Feb 13, 2020
8f024fa
Merge branch 'v1.4.1' of https://github.com/microsoft/nni into dev-re…
Mar 5, 2020
6a96403
fix remote-windows-pipeline
Mar 5, 2020
7afab04
Merge branch 'master' of https://github.com/microsoft/nni into dev-re…
SparkSnail Mar 31, 2020
13bb9f2
remove sudo
SparkSnail Mar 31, 2020
6e1d822
fix error
Mar 31, 2020
5a91061
Merge branch 'dev-remote-pipeline' of https://github.com/microsoft/nn…
Mar 31, 2020
4faeb06
format code
Mar 31, 2020
21aa3b5
fix error
Mar 31, 2020
ffa8c6b
fix error
Mar 31, 2020
4c49f60
debug
Mar 31, 2020
1057ad2
remove clean step
SparkSnail Apr 1, 2020
0a52185
format code
SparkSnail Apr 1, 2020
8b20632
Merge branch 'v1.5' of https://github.com/microsoft/nni into dev-remo…
SparkSnail Apr 4, 2020
f07f3f4
fix windows copy
SparkSnail Apr 4, 2020
939b1d4
fix conflict
SparkSnail Aug 13, 2020
1f78669
fix pipeline
SparkSnail Aug 13, 2020
7b7cadc
fix remote pipeline
SparkSnail Aug 13, 2020
96d41e4
Merge branch 'master' of https://github.com/microsoft/nni into dev-re…
SparkSnail Sep 4, 2020
04f5645
fix remote it
SparkSnail Sep 4, 2020
beafde2
format annotation
SparkSnail Sep 4, 2020
c3c6135
fix platform judge method
SparkSnail Sep 4, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions test/nni_test/nnitest/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,11 @@ def run(args):
print('skipped {}, training service {} not match [{}]'.format(
name, args.ts, test_case_config['trainingService']))
continue

wait_for_port_available(8080, 30)
# remote mode need more time to cleanup
if args.ts == 'remote':
wait_for_port_available(8080, 180)
else:
wait_for_port_available(8080, 30)
print('{}Testing: {}{}'.format(GREEN, name, CLEAR))
begin_time = time.time()

Expand Down