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