Temporarily disable Prettier on CI until issue is resolved (#33734)

This commit is contained in:
Franck Nijhof 2020-04-06 12:03:21 +02:00 committed by GitHub
parent a1aebe904e
commit b31284b855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,10 +76,12 @@ stages:
. venv/bin/activate
pre-commit run pyupgrade --all-files --show-diff-on-failure
displayName: 'Run pyupgrade'
- script: |
. venv/bin/activate
pre-commit run prettier --all-files --show-diff-on-failure
displayName: 'Run prettier'
# Prettier seems to hang on Azure, unknown why yet.
# Temporarily disable the check to no block PRs
# - script: |
# . venv/bin/activate
# pre-commit run prettier --all-files --show-diff-on-failure
# displayName: 'Run prettier'
- job: 'Validate'
pool:
vmImage: 'ubuntu-latest'