We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e804685 commit acd14f6Copy full SHA for acd14f6
.travis.yaml
@@ -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