File tree Expand file tree Collapse file tree 3 files changed +10
-12
lines changed Expand file tree Collapse file tree 3 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,9 @@ matrix:
49
49
apt :
50
50
packages :
51
51
- python-gtk2
52
- # In allow_failures
53
52
- dist : trusty
54
53
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
56
55
- dist : trusty
57
56
env :
58
57
- JOB="3.6" TEST_ARGS="--skip-slow --skip-network" PANDAS_TESTING_MODE="deprecate" CONDA_FORGE=true
@@ -63,7 +62,7 @@ matrix:
63
62
# In allow_failures
64
63
- dist : trusty
65
64
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
67
66
addons :
68
67
apt :
69
68
packages :
@@ -82,10 +81,7 @@ matrix:
82
81
- JOB="2.7_SLOW" SLOW=true
83
82
- dist : trusty
84
83
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
89
85
addons :
90
86
apt :
91
87
packages :
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ if [ "$COVERAGE" ]; then
116
116
fi
117
117
118
118
echo
119
- if [ -z " $BUILD_TEST " ]; then
119
+ if [ -z " $PIP_BUILD_TEST " ] || [ -z " $CONDA_BUILD_TEST " ]; then
120
120
121
121
# build but don't install
122
122
echo " [build em]"
@@ -155,7 +155,7 @@ echo "[removing installed pandas]"
155
155
conda remove pandas -y --force
156
156
pip uninstall -y pandas
157
157
158
- if [ " $BUILD_TEST " ]; then
158
+ if [ " $PIP_BUILD_TEST " ]; then
159
159
160
160
# remove any installation
161
161
pip uninstall -y pandas
@@ -167,6 +167,10 @@ if [ "$BUILD_TEST" ]; then
167
167
bash scripts/build_dist_for_release.sh
168
168
conda uninstall -y cython
169
169
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
170
174
171
175
else
172
176
Original file line number Diff line number Diff line change @@ -4,6 +4,4 @@ source activate pandas
4
4
5
5
echo " install 36 CONDA_BUILD_TEST"
6
6
7
- conda install conda-build
8
-
9
- conda build ./conda.recipe/ --numpy 1.11 --python 3.6 -q
7
+ conda install conda-build
You can’t perform that action at this time.
0 commit comments