Skip to content

Commit

Permalink
Add MacOS Catalina CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcCote committed Apr 7, 2020
1 parent c577b2c commit 85868c7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .azure/pipelines/macos_catalina_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python

trigger:
- master

pool:
vmImage: 'macOS-latest'

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
displayName: 'Use Python 3.7'

- script: |
brew install graphviz
pip install -r requirements.txt
displayName: 'Install dependencies'

- script: |
./.travis/setup.sh
displayName: 'Install TextWorld'

- script: |
./.travis/test.sh
displayName: 'Run tests'

0 comments on commit 85868c7

Please sign in to comment.