Skip to content

Commit

Permalink
CI: appveyor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Oct 10, 2014
1 parent 2d4c8e5 commit 520170d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ environment:
install:
# this installs the appropriate Miniconda (Py2/Py3, 32/64 bit),
# as well as pip, conda-build, and the binstar CLI
- echo "install"
- cd
- ls -ltr
- powershell .\\ci\\install_appveyor.ps1
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

Expand Down
2 changes: 1 addition & 1 deletion ci/install_appveyor.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function InstallCondaPackages ($python_home, $spec) {
}
function InstallCondaPackagesFromFile ($python_home, $ver, $arch) {
$conda_path = $python_home + "\Scripts\conda.exe"
$args = "install --yes --quiet --file " + $env:APPVEYOR_BUILD_FOLDER + "\pandas\ci\requirements-" + $ver + "_" + $arch + ".txt"
$args = "install --yes --quiet --file " + $env:APPVEYOR_BUILD_FOLDER + "\ci\requirements-" + $ver + "_" + $arch + ".txt"
Write-Host ("conda " + $args)
Start-Executable -FilePath "$conda_path" -ArgumentList $args
}
Expand Down

0 comments on commit 520170d

Please sign in to comment.