Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit f3c31de

Browse files
committed
Remove integration tests from Travis.
1 parent d71d822 commit f3c31de

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.travis.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@ matrix:
55
include:
66
- python: 2.7
77
env: TEST_MODE=PEP8
8-
- python: 2.7
9-
env: TEST_MODE=INTEGRATION_TESTS
108
- python: 2.7
119
env: KERAS_HEAD=true
1210
- python: 3.6
1311
env: KERAS_HEAD=true
1412
- python: 2.7
1513
- python: 3.6
16-
- python: 3.6
17-
env: TEST_MODE=INTEGRATION_TESTS
1814
install:
1915
# code below is taken from http://conda.pydata.org/docs/travis.html
2016
# We do this conditionally because it saves us some downloading if the
@@ -57,8 +53,6 @@ install:
5753
script:
5854
- if [[ "$TEST_MODE" == "PEP8" ]]; then
5955
PYTHONPATH=$PWD:$PYTHONPATH py.test --pep8 -m pep8 -n0;
60-
elif [[ "$TEST_MODE" == "INTEGRATION_TESTS" ]]; then
61-
PYTHONPATH=$PWD:$PYTHONPATH py.test tests/integration_test.py;
6256
else
63-
PYTHONPATH=$PWD:$PYTHONPATH py.test tests/ --cov-config .coveragerc --cov=keras_preprocessing tests/ --ignore=tests/integration_test.py;
57+
PYTHONPATH=$PWD:$PYTHONPATH py.test tests/ --cov-config .coveragerc --cov=keras_preprocessing tests/;
6458
fi

0 commit comments

Comments
 (0)