try and call refreshenv before running tests on windows (#3498)

* try and call refreshenv before running tests on windows

* try again
This commit is contained in:
Antioch Peverell 2020-11-23 16:58:59 +00:00 committed by GitHub
parent b5c6d24b40
commit 5282ecb12f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'