-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Fix miniconda path issue #26962 #27787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 19 commits
0cadca3
24529a1
caaa6e6
f016ba8
e1fcfbd
6b81d28
672dc3d
cf24d9d
9f4cc3b
df98bae
66fe488
366df33
3e9405e
b2bdd84
95f8b58
e6ca881
4969422
5691d8f
6e7f022
2cbc3c4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,9 @@ jobs: | |
CONDA_PY: "37" | ||
|
||
steps: | ||
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts" | ||
- powershell: | | ||
Write-Host "##vso[task.prependpath]$env:CONDA\Scripts" | ||
Write-Host "##vso[task.prependpath]$HOME/miniconda3/bin" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bhavaniravi any idea if there is a way to do this without powershell? now that windows supports bash, im trying to see if we can get rid of windows-specific stuff There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In bash this is a simple echo I think. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thats what I thought too, see #30393 where I tried that in the first commit and reverted it when that failed |
||
displayName: 'Add conda to PATH' | ||
- script: conda update -q -n base conda | ||
displayName: Update conda | ||
|
@@ -52,7 +54,6 @@ jobs: | |
} | ||
displayName: 'Check for test failures' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
source activate pandas-dev | ||
python ci/print_skipped.py | ||
displayName: 'Print skipped tests' |
Uh oh!
There was an error while loading. Please reload this page.