.travis.yml: Add initial config for Travis CI

This commit is contained in:
Jan Holthuis 2020-03-11 13:12:57 +01:00
parent 6f52710420
commit b60c39a5fc

19
.travis.yml Normal file
View file

@ -0,0 +1,19 @@
language: python
python:
- 3.5
- 3.6
- 3.7
cache:
pip: true
install:
- python -m pip install flake8 setuptools wheel
- python -m pip install -r requirements.txt
- python setup.py install
before_script:
- flake8 --statistics .
script:
- mkdir html
- sphinx-multiversion docs html
- python setup.py build sdist bdist_wheel