Skip to content

Commit 492b8f7

Browse files
authored
CI: install nomkl to speed building (pandas-dev#15728)
CI: use cache on all builds
1 parent ee19222 commit 492b8f7

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.travis.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ matrix:
7474
- CLIPBOARD=xsel
7575
- COVERAGE=true
7676
- CACHE_NAME="35_nslow"
77-
# - USE_CACHE=true # Don't use cache for 35_nslow
77+
- USE_CACHE=true
7878
addons:
7979
apt:
8080
packages:
@@ -86,6 +86,7 @@ matrix:
8686
- TEST_ARGS="--skip-slow --skip-network"
8787
- PANDAS_TESTING_MODE="deprecate"
8888
- CONDA_FORGE=true
89+
- USE_CACHE=true
8990
addons:
9091
apt:
9192
packages:
@@ -154,13 +155,13 @@ matrix:
154155
- USE_CACHE=true
155156
- python: 3.5
156157
env:
157-
- PYTHON_VERSION=3.5
158-
- JOB_NAME: "35_numpy_dev"
159-
- JOB_TAG=_NUMPY_DEV
160-
- TEST_ARGS="--skip-slow --skip-network"
161-
- PANDAS_TESTING_MODE="deprecate"
162-
- CACHE_NAME="35_numpy_dev"
163-
- USE_CACHE=true
158+
- PYTHON_VERSION=3.5
159+
- JOB_NAME: "35_numpy_dev"
160+
- JOB_TAG=_NUMPY_DEV
161+
- TEST_ARGS="--skip-slow --skip-network"
162+
- PANDAS_TESTING_MODE="deprecate"
163+
- CACHE_NAME="35_numpy_dev"
164+
- USE_CACHE=true
164165
- python: 3.5
165166
env:
166167
- PYTHON_VERSION=3.5

ci/install_travis.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ if [ -e ${INSTALL} ]; then
9999
else
100100
# create new env
101101
# this may already exists, in which case our caching worked
102-
time conda create -n pandas python=$PYTHON_VERSION pytest
102+
time conda create -n pandas python=$PYTHON_VERSION pytest nomkl
103103
fi
104104

105105
# build deps

0 commit comments

Comments
 (0)