Skip to content

Commit 92a841c

Browse files
author
Todd Leonhardt
committed
Make sure tableformatter gets installed for Azure Pipelines builds
1 parent b4d21ab commit 92a841c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,12 @@ jobs:
3232
versionSpec: '$(python.version)'
3333
architecture: 'x64'
3434

35-
# Install dependencies - install specific PyPI packages with pip
36-
- script: python -m pip install --upgrade pip && pip install wcwidth
35+
# Install dependencies - install specific PyPI packages with pip, including tableformatter and its dependencies
36+
- script: |
37+
python -m pip install --upgrade pip
38+
pip install -e .
3739
displayName: 'Install dependencies'
40+
continueOnError: false
3841
3942
# TODO: Consider adding a lint test to use flake8, pylint, or black to validate code style
4043

0 commit comments

Comments
 (0)