Skip to content

Commit e0fb9ce

Browse files
committed
run default on py35 and py34 too
1 parent f191524 commit e0fb9ce

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.travis.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,26 @@ matrix:
1010
fast_finish: true
1111
include:
1212
- python: 2.7
13-
env: TEST_TARGET=branca_release
13+
env: TEST_TARGET=default
1414
- python: 3.6
15-
env: TEST_TARGET=branca_release
15+
env: TEST_TARGET=default
16+
- python: 3.5
17+
env: TEST_TARGET=default
18+
- python: 3.4
19+
env: TEST_TARGET=default
1620
- python: 3.6
1721
env: TEST_TARGET=coding_standards
1822
- python: 3.6
1923
env: TEST_TARGET=notebooks
2024
- python: 2.7
21-
env: TEST_TARGET=branca_latest
25+
env: TEST_TARGET=latest_branca
2226
- python: 3.6
23-
env: TEST_TARGET=branca_latest
27+
env: TEST_TARGET=latest_branca
2428
allow_failures:
2529
- python: 2.7
26-
env: TEST_TARGET=branca_latest
30+
env: TEST_TARGET=latest_branca
2731
- python: 3.6
28-
env: TEST_TARGET=branca_latest
32+
env: TEST_TARGET=latest_branca
2933

3034
before_install:
3135
- wget http://bit.ly/miniconda -O miniconda.sh
@@ -48,11 +52,11 @@ install:
4852
- python setup.py sdist && version=$(python setup.py --version) && pushd dist && pip install folium-${version}.tar.gz && popd
4953

5054
script:
51-
- if [[ $TEST_TARGET == 'branca_release' ]]; then
55+
- if [[ $TEST_TARGET == 'default' ]]; then
5256
py.test -vv --ignore=tests/notebooks/test_notebooks.py ;
5357
fi
5458

55-
- if [[ $TEST_TARGET == 'branca_latest' ]]; then
59+
- if [[ $TEST_TARGET == 'latest_branca' ]]; then
5660
pip install git+https://github.com/python-visualization/branca.git ;
5761
python setup.py test ;
5862
fi

0 commit comments

Comments
 (0)