azure-pipelines.yml 440 Bytes
Newer Older
1
2
3
4
5
6
7
8
pool:
  vmImage: 'Ubuntu 16.04'
strategy:
  matrix:
    Python36:
      PYTHON_VERSION: '3.6'

steps:
Gems Guo's avatar
Gems Guo committed
9
10
11
12
13
14
15
16
  - script: python3 -m pip install --upgrade pip setuptools
    displayName: 'Install python tools'
  - script: |
      make easy-install
      export PATH=$HOME/.nni/bin:$PATH
    displayName: 'Install dependencies'
  - script: |
      cd test/naive
17
      PATH=$HOME/.local/nni/node/bin:$PATH python3 run.py
Gems Guo's avatar
Gems Guo committed
18
    displayName: 'Run tests'