We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d21ab commit 92a841cCopy full SHA for 92a841c
azure-pipelines.yml
@@ -32,9 +32,12 @@ jobs:
32
versionSpec: '$(python.version)'
33
architecture: 'x64'
34
35
- # Install dependencies - install specific PyPI packages with pip
36
- - script: python -m pip install --upgrade pip && pip install wcwidth
+ # Install dependencies - install specific PyPI packages with pip, including tableformatter and its dependencies
+ - script: |
37
+ python -m pip install --upgrade pip
38
+ pip install -e .
39
displayName: 'Install dependencies'
40
+ continueOnError: false
41
42
# TODO: Consider adding a lint test to use flake8, pylint, or black to validate code style
43
0 commit comments