From 71fbcb53a104cf14be6cc832f59415ba713c4fca Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Tue, 30 Jun 2020 11:54:53 +0200 Subject: [PATCH] Use not instead of coalesce --- .azure-pipelines/templates/steps/tox-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/templates/steps/tox-steps.yml b/.azure-pipelines/templates/steps/tox-steps.yml index 7d43126f5..2878ecbde 100644 --- a/.azure-pipelines/templates/steps/tox-steps.yml +++ b/.azure-pipelines/templates/steps/tox-steps.yml @@ -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