Skip to content
This repository was archived by the owner on Nov 3, 2022. It is now read-only.

Commit d68bbb5

Browse files
committed
Add Travis envs to check Keras at HEAD
1 parent de8731e commit d68bbb5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ matrix:
99
env: KERAS_BACKEND=tensorflow TEST_MODE=INTEGRATION_TESTS
1010
- python: 2.7
1111
env: KERAS_BACKEND=tensorflow
12+
- python: 2.7
13+
env: KERAS_BACKEND=tensorflow KERAS_HEAD=true
1214
- python: 3.6
1315
env: KERAS_BACKEND=tensorflow
16+
- python: 2.7
17+
env: KERAS_BACKEND=theano KERAS_HEAD=true THEANO_FLAGS=optimizer=fast_compile
1418
- python: 3.6
1519
env: KERAS_BACKEND=theano THEANO_FLAGS=optimizer=fast_compile
20+
- python: 2.7
21+
env: KERAS_BACKEND=cntk KERAS_HEAD=true PYTHONWARNINGS=ignore
1622
- python: 3.6
1723
env: KERAS_BACKEND=cntk PYTHONWARNINGS=ignore
1824
install:
@@ -47,6 +53,9 @@ install:
4753
conda install Pillow;
4854
fi
4955

56+
- if [[ $KERAS_HEAD == "true" ]]; then
57+
pip install --no-deps git+https://github.com/keras-team/keras.git;
58+
fi
5059
- pip install -e .[tests]
5160

5261
# install TensorFlow (CPU version).

0 commit comments

Comments
 (0)