bumpver/.travis.yml
2018-09-04 19:53:40 +02:00

22 lines
520 B
YAML

language: python
python:
# - "3.7"
- "3.6"
# NOTE (mb 2018-09-03): These should be installed via
# a bdist wheel, generated with python3.6.
# - "3.5"
# - "3.4"
# - "2.7"
install:
- pip install rst2html5 flake8 pytest pytest-cov mypy typing-extensions
- pip install .
script:
- export PYTHONPATH=src/:$PYTHONPATH
- export MYPYPATH=stubs/
- python -m flake8 src/pycalver/
- python -m mypy src/pycalver/
- python -m pytest --cov=pycalver test/
- rst2html5 --strict README.rst > /dev/null