Skip to content

Commit 631a351

Browse files
authored
Merge pull request #27 from python-tableformatter/fix_azure_pipelines
Make sure tableformatter gets installed for Azure Pipelines builds
2 parents b4d21ab + 92a841c commit 631a351

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)