forked from inveniosoftware/invenio-base
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
78 lines (64 loc) · 2.84 KB
/
.travis.yml
File metadata and controls
78 lines (64 loc) · 2.84 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2015 CERN.
#
# Invenio is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
notifications:
email: false
sudo: false
services:
- mysql
- redis
- elasticsearch
language: python
cache:
- apt
- pip
env:
- REQUIREMENTS=lowest REXTRAS=docs,tests
- REQUIREMENTS=release REXTRAS=docs,tests
- REQUIREMENTS=devel REXTRAS=docs,tests
python:
- "2.7"
before_install:
- "travis_retry pip install --upgrade pip"
- "travis_retry pip install mock twine wheel coveralls"
- "python requirements.py --extras=$REXTRAS --level=min > .travis-lowest-requirements.txt"
- "python requirements.py --extras=$REXTRAS --level=pypi > .travis-release-requirements.txt"
- "python requirements.py --extras=$REXTRAS --level=dev > .travis-devel-requirements.txt"
- "mkdir -p ${VIRTUAL_ENV}/var/invenio.base-instance/"
- "cp .travis.invenio.cfg ${VIRTUAL_ENV}/var/invenio.base-instance/invenio.cfg"
install:
- "travis_retry pip install -e git+https://github.com/inveniosoftware/invenio#egg=invenio"
- "travis_retry pip install -r .travis-$REQUIREMENTS-requirements.txt --allow-all-external"
- "travis_retry pip install -e .[$REXTRAS]"
before_script:
- "inveniomanage database init --yes-i-know"
- "inveniomanage database create --quiet"
script:
- "sphinx-build -qnN docs docs/_build/html"
- "python setup.py test"
after_success:
- coveralls
deploy:
provider: pypi
user: jirikuncar
password:
secure: fgCMmAN3IQovRtKh8epQhHPkF0WZ9zwvcQz1wmeToAcI3O2ZrKEZ25IYrx80JkNszUDBCzo8evo5kPEWzEe13Dayj7ub/8RyvdrFPcSF+WjFLG8OS+ZcW1uA02UtXNHT89efdNwAGJyYAORgwRcZWug7I39QkTQrR9jFeFrn6PvnYKGsOg+eriaAq3NS9YQkuIYBsR5mLRgvazkhFJbBpIkK+ANtM3k7fGhclDSQYfiF7wHPDxUxNhBz1pafK70qYprbL4RHjaRYK/o+++RCV5+bQ8R8Sg1tXK3BlZlmCtr90pDrNEGD57mliycH+yk6bInoL0QpN0DveNX+5ZIm9KoeJcdWCuS57pPIrJxCi3R781AZOGxHrSpZyuYcS6CISd6aVT2oGYjEAiWb5pxVQkM3kQ9ZMOG1PuiR4jSev+eSEMUZxCNGBw18pZQxzXGOTXefxcqxcPdjRIRbGh3SotBoVdysyMw52Z8ZFTqRCqfCE4kgl95g8S2haS5TmgNlq8lOgEqqMZdcFcYtI6ftGNwcY5qxFGCALd4kuwd39HhsJMiA52bu3yIzc05T0Dmraq4mvy64ZBhlaVN/JpxGL5v2MhEE6ZUtvu16j+Ee40x7d0a5MVv2YkjeilpG6gl4skdKTn77+uhLmoTdINIZ4MRL8HjA6ZPlqUKQo3snxiU=
distributions: "compile_catalog sdist bdist_wheel"
on:
tags: true
python: "2.7"