summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorTodd Leonhardt <toleonha@microsoft.com>2018-09-12 14:07:21 -0400
committerTodd Leonhardt <toleonha@microsoft.com>2018-09-12 14:07:21 -0400
commit94b2943fcbac63aec4a1f5e1d02aed39d15b7cad (patch)
tree10dbc7b78552bcc4ed964b545eef9d3408dbf41b /azure-pipelines.yml
parente6f96e7373e0b6ea1e9ccd2de292f029cb12fac9 (diff)
downloadcmd2-git-94b2943fcbac63aec4a1f5e1d02aed39d15b7cad.tar.gz
Trying to fix macOS YAML-based test failures
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 73a992ed..c19cb9d6 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -34,7 +34,7 @@ jobs:
# Install dependencies - install specific PyPI packages with pip, including cmd2 dependencies
- script: |
- python -m pip install --upgrade pip && pip3 install --upgrade setuptools
+ python -m pip install --upgrade pip && pip3 install --upgrade setuptools gnureadline
pip install -e .
displayName: 'Upgrade pip and setuptools'
continueOnError: false
@@ -47,6 +47,7 @@ jobs:
py.test tests --cov --junitxml=junit/test-results.xml
codecov
displayName: 'Run tests and code coverage'
+ continueOnError: false
# Publish test results to the Azure DevOps server
- task: PublishTestResults@2