Skip to content

Commit d0c77a6

Browse files
committed
changes from review
1 parent 388ddc1 commit d0c77a6

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.travis.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,9 @@ matrix:
4949
apt:
5050
packages:
5151
- python-gtk2
52-
# In allow_failures
5352
- dist: trusty
5453
env:
55-
- JOB="3.6_CONDA_BUILD_TEST" TEST_ARGS="--skip-slow" BUILD_TEST=true
54+
- JOB="3.6_CONDA_BUILD_TEST" TEST_ARGS="--skip-slow --skip-network" CONDA_BUILD_TEST=true
5655
- dist: trusty
5756
env:
5857
- JOB="3.6" TEST_ARGS="--skip-slow --skip-network" PANDAS_TESTING_MODE="deprecate" CONDA_FORGE=true
@@ -63,7 +62,7 @@ matrix:
6362
# In allow_failures
6463
- dist: trusty
6564
env:
66-
- JOB="3.6_BUILD_TEST" TEST_ARGS="--skip-slow" BUILD_TEST=true
65+
- JOB="3.6_PIP_BUILD_TEST" TEST_ARGS="--skip-slow" PIP_BUILD_TEST=true
6766
addons:
6867
apt:
6968
packages:
@@ -82,10 +81,7 @@ matrix:
8281
- JOB="2.7_SLOW" SLOW=true
8382
- dist: trusty
8483
env:
85-
- JOB="3.6_CONDA_BUILD_TEST" TEST_ARGS="--skip-slow" BUILD_TEST=true
86-
- dist: trusty
87-
env:
88-
- JOB="3.6_BUILD_TEST" TEST_ARGS="--skip-slow" BUILD_TEST=true
84+
- JOB="3.6_PIP_BUILD_TEST" TEST_ARGS="--skip-slow" PIP_BUILD_TEST=true
8985
addons:
9086
apt:
9187
packages:

ci/install_travis.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ if [ "$COVERAGE" ]; then
116116
fi
117117

118118
echo
119-
if [ -z "$BUILD_TEST" ]; then
119+
if [ -z "$PIP_BUILD_TEST" ] || [ -z "$CONDA_BUILD_TEST" ]; then
120120

121121
# build but don't install
122122
echo "[build em]"
@@ -155,7 +155,7 @@ echo "[removing installed pandas]"
155155
conda remove pandas -y --force
156156
pip uninstall -y pandas
157157

158-
if [ "$BUILD_TEST" ]; then
158+
if [ "$PIP_BUILD_TEST" ]; then
159159

160160
# remove any installation
161161
pip uninstall -y pandas
@@ -167,6 +167,10 @@ if [ "$BUILD_TEST" ]; then
167167
bash scripts/build_dist_for_release.sh
168168
conda uninstall -y cython
169169
time pip install dist/*tar.gz || exit 1
170+
171+
elif [ "$CONDA_BUILD_TEST" ]; then
172+
173+
conda build ./conda.recipe/ --numpy 1.11 --python 3.6 -q
170174

171175
else
172176

ci/requirements-3.6_CONDA_BUILD_TEST.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@ source activate pandas
44

55
echo "install 36 CONDA_BUILD_TEST"
66

7-
conda install conda-build
8-
9-
conda build ./conda.recipe/ --numpy 1.11 --python 3.6 -q
7+
conda install conda-build

0 commit comments

Comments
 (0)