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.
2 parents b4d21ab + 92a841c commit 631a351Copy full SHA for 631a351
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