8
8
matrix :
9
9
fast_finish : true # immediately finish build once one of the jobs fails.
10
10
11
- # set clone depth
12
- clone_depth : 300
13
-
14
11
environment :
15
12
global :
16
13
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
@@ -23,7 +20,7 @@ environment:
23
20
PYTHON_VERSION : " 3.4"
24
21
PYTHON_ARCH : " 64"
25
22
CONDA_PY : " 34"
26
- CONDA_NPY : " 110 "
23
+ CONDA_NPY : " 19 "
27
24
28
25
- PYTHON : " C:\\ Python27_64"
29
26
PYTHON_VERSION : " 2.7"
@@ -49,36 +46,41 @@ init:
49
46
- " ECHO %PYTHON_VERSION% %PYTHON%"
50
47
51
48
install :
52
- # this installs the appropriate Miniconda (Py2/Py3, 32/64 bit),
49
+ # this installs the appropriate Miniconda (Py2/Py3, 32/64 bit)
50
+ # updates conda & installs: conda-build jinja2 anaconda-client
53
51
- powershell .\ci\install.ps1
54
52
- SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
55
53
- echo "install"
56
54
- cd
57
55
- ls -ltr
58
56
- git tag --sort v:refname
59
57
58
+ # this can conflict with git
59
+ - cmd : rmdir C:\cygwin /s /q
60
+
60
61
# install our build environment
61
62
- cmd : conda config --set show_channel_urls yes --set always_yes yes --set changeps1 no
62
63
- cmd : conda update -q conda
63
64
- cmd : conda config --add channels http://conda.anaconda.org/pandas
64
65
- cmd : conda config --set ssl_verify false
65
66
66
67
# this is now the downloaded conda...
67
- - conda info -a
68
+ - cmd : conda info -a
68
69
69
70
# build em using the local source checkout in the correct windows env
70
- - conda install conda-build
71
- - cmd : ' %CMD_IN_ENV% conda build ci\appveyor.recipe -q --no-test'
71
+ - cmd : ' %CMD_IN_ENV% conda build ci\appveyor.recipe -q'
72
72
73
73
# create our env
74
- - SET REQ=ci\requirements-%PYTHON_VERSION%-%PYTHON_ARCH%.run
75
74
- cmd : conda create -q -n pandas python=%PYTHON_VERSION% nose
76
75
- cmd : activate pandas
77
- - cmd : conda install -q --file=%REQ%
78
- - ps : conda install -q (conda build ci\appveyor.recipe -q --output --no-test)
76
+ - SET REQ=ci\requirements-%PYTHON_VERSION%-%PYTHON_ARCH%.run
77
+ - cmd : echo "installing requirements from %REQ%"
78
+ - cmd : conda install -n pandas -q --file=%REQ%
79
+ - ps : conda install -n pandas (conda build ci\appveyor.recipe -q --output)
79
80
80
81
test_script :
81
82
# tests
82
83
- cd \
83
- - conda list pandas
84
- - nosetests --exe -A "not slow and not network and not disabled" pandas
84
+ - cmd : activate pandas
85
+ - cmd : conda list
86
+ - cmd : nosetests --exe -A "not slow and not network and not disabled" pandas
0 commit comments