Codebase list python-get-version / 9f90875c-1dd4-4dc7-acf7-58c5517fe02b/main .travis.yml
9f90875c-1dd4-4dc7-acf7-58c5517fe02b/main

Tree @9f90875c-1dd4-4dc7-acf7-58c5517fe02b/main (Download .tar.gz)

.travis.yml @9f90875c-1dd4-4dc7-acf7-58c5517fe02b/mainraw · history · blame

dist: xenial
language: python
cache: pip
python:
  - '3.5'
  - '3.6'
  - '3.7'

install:
  - pip install future-fstrings flit coveralls
  - flit install --deps develop
script:
  - if [[ $TRAVIS_PYTHON_VERSION != 3.5 ]]; then export BLACK_SWITCH=--black; fi
  - PYTHONPATH=. pytest --cov=get_version $BLACK_SWITCH
  - rst2html.py --halt=2 README.rst >/dev/null
after_success: coveralls