Skip to content

Commit acd14f6

Browse files
committed
Travis-ci file.
1 parent e804685 commit acd14f6

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
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+
- nosetests --verbose --with-doctest folium

0 commit comments

Comments
 (0)