From 5282ecb12f86ac6cc11c70c36f11cadf0e252d83 Mon Sep 17 00:00:00 2001 From: Antioch Peverell Date: Mon, 23 Nov 2020 16:58:59 +0000 Subject: [PATCH] try and call refreshenv before running tests on windows (#3498) * try and call refreshenv before running tests on windows * try again --- .ci/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/test.yml b/.ci/test.yml index 65c9bee2f1..1c476ecfc0 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'