Skip to content

Commit 2e5e761

Browse files
committed
Pip install moto from build files
1 parent a5d7d0b commit 2e5e761

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

appveyor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ install:
7272
- cmd: conda info -a
7373

7474
# 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
7676
- cmd: activate pandas
77+
- cmd: pip install moto
7778
- SET REQ=ci\requirements-%PYTHON_VERSION%_WIN.run
7879
- cmd: echo "installing requirements from %REQ%"
7980
- cmd: conda install -n pandas --file=%REQ%

ci/install_circle.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fi
6565
echo "[create env: ${REQ_BUILD}]"
6666
time conda create -n pandas -q --file=${REQ_BUILD} || exit 1
6767
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
6969

7070
source activate pandas
7171

ci/install_travis.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ if [ -e ${REQ} ]; then
104104
fi
105105

106106
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
109108

110109
if [ "$LINT" ]; then
111110
conda install flake8

0 commit comments

Comments
 (0)