Skip to content

Commit fd68f83

Browse files
committed
Merge pull request #56 from ocefpaf/travis
Travis
2 parents eaaf17e + b1cceaf commit fd68f83

File tree

5 files changed

+957
-925
lines changed

5 files changed

+957
-925
lines changed

.travis.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

MANIFEST.in

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
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 *

0 commit comments

Comments
 (0)