From de6a6ad19fc6031876cc615c6256742bfff2e6c1 Mon Sep 17 00:00:00 2001 From: Antioch Peverell Date: Wed, 25 Nov 2020 15:04:49 +0000 Subject: [PATCH] call refreshenv as part of windows test script (#534) --- .ci/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/test.yml b/.ci/test.yml index 65c9bee2f..1c476ecfc 100644 --- a/.ci/test.yml +++ b/.ci/test.yml @@ -1,5 +1,6 @@ steps: - - script: 'cargo test --all' + - script: | + refreshenv && cargo test --all displayName: Windows Cargo Test condition: and(eq( variables['Agent.OS'], 'Windows_NT' ), eq( variables['CI_JOB'], 'test-all' )) - script: 'cargo test --all'