Skip to content

Commit 520170d

Browse files
committed
CI: appveyor fixes
1 parent 2d4c8e5 commit 520170d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

appveyor.yml

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ environment:
2525
install:
2626
# this installs the appropriate Miniconda (Py2/Py3, 32/64 bit),
2727
# as well as pip, conda-build, and the binstar CLI
28+
- echo "install"
29+
- cd
30+
- ls -ltr
2831
- powershell .\\ci\\install_appveyor.ps1
2932
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
3033

ci/install_appveyor.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function InstallCondaPackages ($python_home, $spec) {
109109
}
110110
function InstallCondaPackagesFromFile ($python_home, $ver, $arch) {
111111
$conda_path = $python_home + "\Scripts\conda.exe"
112-
$args = "install --yes --quiet --file " + $env:APPVEYOR_BUILD_FOLDER + "\pandas\ci\requirements-" + $ver + "_" + $arch + ".txt"
112+
$args = "install --yes --quiet --file " + $env:APPVEYOR_BUILD_FOLDER + "\ci\requirements-" + $ver + "_" + $arch + ".txt"
113113
Write-Host ("conda " + $args)
114114
Start-Executable -FilePath "$conda_path" -ArgumentList $args
115115
}

0 commit comments

Comments
 (0)