azure-pipelines.yml 405 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
  - script: python3 -m pip install --upgrade pip setuptools
    displayName: 'Install python tools'
  - script: |
QuanluZhang's avatar
QuanluZhang committed
12
      source install.sh
Gems Guo's avatar
Gems Guo committed
13
14
15
    displayName: 'Install dependencies'
  - script: |
      cd test/naive
QuanluZhang's avatar
QuanluZhang committed
16
17
      export PATH=$HOME/.local/bin:$PATH
      python3 run.py
Gems Guo's avatar
Gems Guo committed
18
    displayName: 'Run tests'