From def19b3705915e57f72b520896aef8f261d25f36 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Tue, 30 Jun 2020 12:09:13 +0200 Subject: [PATCH] Simplify condition --- .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 caf9194c0..eb155994e 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: not(eq(variables['PYTHON_VERSION'], '')) + condition: ne(variables['PYTHON_VERSION'], '') - bash: | python tools/pip_install.py -I tox virtualenv displayName: Install runtime dependencies