diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 9df2b504..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,29 +0,0 @@ -jobs: - - job: win32 - timeoutInMinutes: 60 - strategy: - matrix: - Py36-x86-win2016: - python.version: '3.6' - python.arch: 'x86' - vmImage: vs2017-win2016 - Py37-x64-win2016: - python.version: '3.7' - python.arch: 'x64' - vmImage: vs2017-win2016 - pool: - vmImage: $(vmImage) - steps: - - task: UsePythonVersion@0 - inputs: - versionSpec: '$(python.version)' - architecture: '$(python.arch)' - - script: | - pip install --user -U setuptools pip - displayName: Install Dependencies - - script: | - pip install -e . - displayName: Build - - script: | - python runtests.py - displayName: Run tests