Use not instead of coalesce

This commit is contained in:
Adrien Ferrand 2020-06-30 11:54:53 +02:00
parent 4a941efd08
commit 71fbcb53a1

View file

@ -22,7 +22,7 @@ steps:
inputs:
versionSpec: $(PYTHON_VERSION)
addToPath: true
condition: ne(coalesce(variables['PYTHON_VERSION'], 'UNSPECIFIED'), 'UNSPECIFIED')
condition: not(variables['PYTHON_VERSION'])
- bash: |
python tools/pip_install.py -I tox virtualenv
displayName: Install runtime dependencies