diff --git a/CHANGELOG.md b/CHANGELOG.md index 71df520f2f4a..f3340be28cee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 2020.3.1 (30 March 2020) +## 2020.3.1 (31 March 2020) ### Fixes diff --git a/build/ci/templates/test_phases.yml b/build/ci/templates/test_phases.yml index 5a407d9dee10..eca98a02b36d 100644 --- a/build/ci/templates/test_phases.yml +++ b/build/ci/templates/test_phases.yml @@ -129,6 +129,12 @@ steps: displayName: 'Downgrade pywin32 on Windows / Python 3.6' condition: and(succeeded(), eq(variables['NeedsPythonFunctionalReqs'], 'true'), eq(variables['Agent.Os'], 'Windows_NT'), eq(variables['PythonVersion'], '3.6')) + # On MAC let CONDA update install paths + - bash: | + sudo chown -R $USER $CONDA + displayName: 'Give CONDA permission to its own files' + condition: and(succeeded(), eq(variables['Agent.Os'], 'Darwin')) + # Install the requirements for ipython tests. # # This task will only run if variable `NeedsIPythonReqs` is true.