-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path.travis.yml
37 lines (30 loc) · 870 Bytes
/
.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
# This file is part of Workflow.
# Copyright (C) 2014, 2017 CERN.
#
# Workflow 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
python:
- "2.7"
- "3.6"
install:
- pip install --upgrade pip
- pip install pytest pytest-pep8 pytest-cov pytest-cache
- pip install coveralls
- pip install -e .[docs]
script:
- sphinx-build -qnNW docs docs/_build/html
- python setup.py test
after_success:
- coveralls
notifications:
email: false
deploy:
provider: pypi
user: inveniosoftware
password:
secure: "VuWcET8lKaHnQJ/6i7ryV5F1YqegOQEvmxSe8ph8s5waowxPtnroDCtegCSOYR3865cB37UoE5hqb1DJmEQ8tuII6dGP0vG8FZJ365N1d1nH87XHFJnplCmAQyLGGMGZnw8+XV17KpzsyBR8v+n8RvY909tQd/i0Rsyrp+5/OlA="
distributions: "sdist bdist_wheel"
on:
python: "2.7"