Skip to content

Commit 84565d9

Browse files
committed
TST: Made s3 related tests mock boto
Kept a couple around for testing things like accessing a private bucket as that's hard to mock. Try the pip counterparts Some more merge request changes
1 parent 1981b67 commit 84565d9

16 files changed

+106
-68
lines changed

appveyor.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,11 @@ install:
8080
- cmd: conda list -n pandas
8181
- cmd: echo "installing requirements from %REQ% - done"
8282

83+
# add some pip only reqs to the env
84+
- SET REQ=ci\requirements-%PYTHON_VERSION%_WIN.pip
85+
- cmd: echo "installing requirements from %REQ%"
86+
- cmd: pip install -Ur %REQ%
87+
8388
# build em using the local source checkout in the correct windows env
8489
- cmd: '%CMD_IN_ENV% python setup.py build_ext --inplace'
8590

ci/requirements-2.7.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ py
88
PyCrypto
99
mock
1010
ipython
11+
moto

ci/requirements-2.7_SLOW.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moto

ci/requirements-2.7_WIN.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moto

ci/requirements-3.5.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
xarray==0.9.1
22
pandas-gbq
3+
moto

ci/requirements-3.5_OSX.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
python-dateutil==2.5.3
2+
moto

ci/requirements-3.6.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
brotlipy
2+
moto

ci/requirements-3.6_LOCALE.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moto

ci/requirements-3.6_LOCALE_SLOW.pip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moto

ci/requirements-3.6_NUMPY_DEV.pip

Whitespace-only changes.

0 commit comments

Comments
 (0)