https://github.com/gboeing/osmnx
Raw File
Tip revision: 66283964e0009e5a4b48890ed138909f3b3f1053 authored by gboeing on 23 July 2017, 03:00:16 UTC
version bump
Tip revision: 6628396
.travis.yml
language: python

python:
  - "2.7"
  - "3.5"
  - "3.6"

before_install:
  - pip install --upgrade pip
  - pip install --upgrade wheel
  - wget http://bit.ly/miniconda -O miniconda.sh
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set show_channel_urls true
  - conda update conda
  - conda config --add channels conda-forge --force
  - conda create --quiet --name TESTENV python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file requirements-dev.txt
  - source activate TESTENV
  - conda info --all
  - conda list

install:
  - pip install .
  - pip show osmnx

script:
  - coverage run --source osmnx -m pytest --verbose

after_success:
  - coverage report -m
  - coveralls
back to top