Explorar o código

.travis.yml: Add initial config for Travis CI

Jan Holthuis %!s(int64=5) %!d(string=hai) anos
pai
achega
b60c39a5fc
Modificáronse 1 ficheiros con 19 adicións e 0 borrados
  1. 19 0
      .travis.yml

+ 19 - 0
.travis.yml

@@ -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