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

Fix integration test dependencies #822

Merged
merged 4 commits into from
Mar 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions test/pipelines-it-kubeflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ jobs:
source install.sh
displayName: 'Install nni toolkit via source code'

- script: |
chicm-ms marked this conversation as resolved.
Show resolved Hide resolved
python3 -m pip install scikit-learn==0.20.0 --user
python3 -m pip install torch==0.4.1 --user
python3 -m pip install torchvision==0.2.1 --user
python3 -m pip install keras==2.1.6 --user
python3 -m pip install tensorflow-gpu==1.10.0 --user
sudo apt-get install swig -y
nnictl package install --name=SMAC
displayName: 'Install dependencies for integration tests in Kubeflow mode'

- script: |
if [ $(build_docker_img) = 'true' ]
then
Expand Down
10 changes: 10 additions & 0 deletions test/pipelines-it-pai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ jobs:
source install.sh
displayName: 'Install nni toolkit via source code'

- script: |
python3 -m pip install scikit-learn==0.20.0 --user
python3 -m pip install torch==0.4.1 --user
python3 -m pip install torchvision==0.2.1 --user
python3 -m pip install keras==2.1.6 --user
python3 -m pip install tensorflow-gpu==1.10.0 --user
sudo apt-get install swig -y
nnictl package install --name=SMAC
displayName: 'Install dependencies for integration tests in PAI mode'

- script: |
if [ $(build_docker_img) = 'true' ]
then
Expand Down