https://github.com/gboeing/osmnx
Raw File
Tip revision: c16f10b26e2066fb474da4dbec51599dcf35660b authored by gboeing on 04 December 2019, 23:59:19 UTC
update env
Tip revision: c16f10b
.travis.yml
dist: bionic
language: python
python:
  - 3.7
  - 3.8

before_install:
  - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -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 -n base conda
  - conda config --prepend channels conda-forge
  - conda create -n TEST --strict-channel-priority python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file requirements-dev.txt
  - source activate TEST
  - conda info --all

install:
  - python setup.py install
  - conda list

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

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