Skip to content

Commit b123674

Browse files
authored
Fix venv test failures on mac (microsoft#10725)
* Fix venv test failures on mac * Fix parens
1 parent 24131a4 commit b123674

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

build/ci/templates/test_phases.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,10 @@ steps:
130130
condition: and(succeeded(), eq(variables['NeedsPythonFunctionalReqs'], 'true'), eq(variables['Agent.Os'], 'Windows_NT'))
131131
132132
# On MAC let CONDA update install paths
133-
#
134-
# This task will only run if variable `NeedsPythonFunctionalReqs` is true.
135133
- bash: |
136134
sudo chown -R $USER $CONDA
137135
displayName: 'Give CONDA permission to its own files'
138-
condition: and(succeeded(), eq(variables['NeedsPythonFunctionalReqs'], 'true'), eq(variables['Agent.Os'], 'Darwin'))
136+
condition: and(succeeded(), eq(variables['Agent.Os'], 'Darwin'))
139137
140138
# Create the two anaconda environments
141139
#

0 commit comments

Comments
 (0)