azure-pipeline.yml 433 Bytes
Newer Older
Gems Guo's avatar
Gems Guo committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
jobs:
- job: Build
  pool:
    vmImage: ubuntu-16.04
  strategy:
    matrix:
      Python36:
        PYTHON_VERSION: '3.6'
  steps:
  - 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
      python3 run.py
    displayName: 'Run tests'