File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,9 @@ install:
72
72
- cmd : conda info -a
73
73
74
74
# create our env
75
- - cmd : conda create -n pandas python=%PYTHON_VERSION% cython pytest>=3.1.0 pytest-xdist moto
75
+ - cmd : conda create -n pandas python=%PYTHON_VERSION% cython pytest>=3.1.0 pytest-xdist
76
76
- cmd : activate pandas
77
+ - cmd : pip install moto
77
78
- SET REQ=ci\requirements-%PYTHON_VERSION%_WIN.run
78
79
- cmd : echo "installing requirements from %REQ%"
79
80
- cmd : conda install -n pandas --file=%REQ%
Original file line number Diff line number Diff line change 65
65
echo " [create env: ${REQ_BUILD} ]"
66
66
time conda create -n pandas -q --file=${REQ_BUILD} || exit 1
67
67
time conda install -n pandas pytest> =3.1.0 || exit 1
68
- time conda install -n pandas moto || exit 1
68
+ time pip install moto || exit 1
69
69
70
70
source activate pandas
71
71
Original file line number Diff line number Diff line change @@ -104,8 +104,7 @@ if [ -e ${REQ} ]; then
104
104
fi
105
105
106
106
time conda install -n pandas pytest> =3.1.0
107
- time conda install -n pandas moto
108
- time pip install pytest-xdist
107
+ time pip install pytest-xdist moto
109
108
110
109
if [ " $LINT " ]; then
111
110
conda install flake8
You can’t perform that action at this time.
0 commit comments