File tree Expand file tree Collapse file tree 5 files changed +957
-925
lines changed Expand file tree Collapse file tree 5 files changed +957
-925
lines changed Original file line number Diff line number Diff line change
1
+ language : python
2
+
3
+ env :
4
+ - CONDA="python=2.7 numpy"
5
+ - CONDA="python=3.3 numpy"
6
+ - CONDA="python=3.4 numpy"
7
+
8
+ before_install :
9
+ - URL=http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
10
+ - wget $URL -O miniconda.sh
11
+ - bash miniconda.sh -b -p $HOME/miniconda
12
+ - export PATH="$HOME/miniconda/bin:$PATH"
13
+ - hash -r
14
+ - conda config --set always_yes yes
15
+ - conda update conda
16
+ - conda info -a
17
+ - travis_retry conda create -n test $CONDA pip jinja2 pandas mock six
18
+ - source activate test
19
+ - travis_retry pip install vincent
20
+
21
+ install :
22
+ - export PYTHONWARNINGS=all
23
+ - python setup.py install
24
+
25
+ script :
26
+ - cd tests && nosetests --verbose --nocapture folium_tests.py
Original file line number Diff line number Diff line change 1
- include *.md
2
- include *.txt
3
-
4
- recursive-include folium *.py
5
- recursive-include folium *.css
6
- recursive-include folium *.js
7
- recursive-include folium/templates *
1
+ include *.md
2
+ include *.txt
3
+
4
+ recursive-include folium *.py
5
+ recursive-include folium *.css
6
+ recursive-include folium *.js
7
+ recursive-include folium/plugins *
8
+ recursive-include folium/templates *
You can’t perform that action at this time.
0 commit comments