From 79ff07b95391df06c7d31a60bbe1029e762506f7 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Wed, 20 Feb 2019 21:28:39 +0000 Subject: [PATCH] Use bash, print vim version --- azure-pipelines.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55bd4c1..12de1ff 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,8 +9,11 @@ jobs: vimImage: 'ubuntu-16.04' container: 'puremourning/vimspector:test' steps: - - script: python3 install_gadget.py + - bash: python3 install_gadget.py displayName: 'Install gadgets' - - script: ./run_tests + - bash: vim --version + displayName: 'Print vim version information' + + - bash: ./run_tests displayName: 'Run the tests'