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'