From cbc1316a7a0607ae1df7fef1669de032639710c9 Mon Sep 17 00:00:00 2001 From: Richard Frank Date: Sun, 6 Mar 2016 15:43:20 -0500 Subject: [PATCH] MAINT: Moved scripts to appveyor dir --- appveyor.yml | 4 ++-- {etc => ci/appveyor}/install.ps1 | 0 {etc => ci/appveyor}/run_with_env.cmd | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {etc => ci/appveyor}/install.ps1 (100%) rename {etc => ci/appveyor}/run_with_env.cmd (100%) diff --git a/appveyor.yml b/appveyor.yml index c557fcc6..7b1e88ce 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ environment: # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the # /E:ON and /V:ON options are not enabled in the batch script intepreter # See: http://stackoverflow.com/a/13751649/163740 - CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\etc\\run_with_env.cmd" + CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\appveyor\\run_with_env.cmd" matrix: - PYTHON: "C:\\Python34_64" @@ -37,7 +37,7 @@ install: # Get cygwin's git out of our PATH. See https://github.com/omnia-md/conda-dev-recipes/pull/16/files#diff-180360612c6b8c4ed830919bbb4dd459 - "del C:\\cygwin\\bin\\git.exe" # this installs the appropriate Miniconda (Py2/Py3, 32/64 bit), - - powershell .\etc\install.ps1 + - powershell .\ci\appveyor\install.ps1 - SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH% - conda info -a diff --git a/etc/install.ps1 b/ci/appveyor/install.ps1 similarity index 100% rename from etc/install.ps1 rename to ci/appveyor/install.ps1 diff --git a/etc/run_with_env.cmd b/ci/appveyor/run_with_env.cmd similarity index 100% rename from etc/run_with_env.cmd rename to ci/appveyor/run_with_env.cmd