forked from inveniosoftware/flask-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (38 loc) · 1.02 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
#
# This file is part of Flask-Sitemap
# Copyright (C) 2013, 2014 CERN.
#
# Flask-Sitemap is free software; you can redistribute it and/or modify
# it under the terms of the Revised BSD License; see LICENSE file for
# more details.
language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install --upgrade pip setuptools py
- pip install coveralls pydocstyle
- pip install pytest pytest-pep8 pytest-cov pytest-cache
- pip install -e .[docs]
script:
- pydocstyle flask_sitemap
- "sphinx-build -qnNW docs docs/_build/html"
- python setup.py test
after_success:
- coveralls
notifications:
email: false
deploy:
provider: pypi
user: jirikuncar
password:
secure: UQNijeabB3fhBi7oCpnRFciJwwfccwTIkdRkIWhmZPod86+kUoh900/+nEEkZdJ9Ac3LMtQUcEmsX1on5/Hd4AfQJ7XyCS6wGShya25itW7X/nd5ZDF+fxRS6ElPFkAk0eTxEnn3zazshh/4W5C8m+iD5mcqQBlq738ld19DT/Y=
distributions: "sdist bdist_wheel"
on:
tags: true
python: "2.7"
repo: inveniosoftware/flask-sitemap