forked from inspirehep/invenio-records
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
79 lines (65 loc) · 2.92 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
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
79
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2013, 2014, 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 check-manifest 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:
- "check-manifest --ignore .travis-\\*-requirements.txt"
- "sphinx-build -qnN docs docs/_build/html"
- "python setup.py test"
after_success:
- coveralls
deploy:
provider: pypi
user: jirikuncar
password:
secure: O5BAgL7uQLyhVGk5/MLVUdDTBtaNexJNWNTXUioW97b6Sl8KdD2s+uJmVIluJ1CtO0r/uvogLNEyrDKPHBNTw8diPN+yXLhCpZe0aiM1AKYmIGDulicQcTNLG176A3QkYc1DW9HMN2d6Tm4bi3kieACtqByACgDPpso8engTvqBmHsl9f8VvEFdoT3O6/yPCi7P7IgWewr2/0l18Y/kmkQPiPYXmBF8hshuP812aV1h0MohxRoYl+rvIlGBFd5F06UZg/1mjxDCZgwxWEzutpZNW3doDZ4cPnJebv4SPuwY8+pTsJ8icIkoPofvkolhcudWLnfaPaR0dVIyHF1OkuNffLFMLKV8VxtHmmThACeRqUpi9Fs4u2ru7q84yDXPnM6cl9koNjAQRsT/caTzL/wNGJ/0SlcuoMEuwDBZWdOAxFf66l/ZyxjQTHLonybUPHKac1lsiV3IcVrJn4Ke4WttmXqGYcV1Rj6sdT7nFVUC0DvWiE+JkBc62XfLSkTWB1Q3rx1Tm7UACwYn6762N3r843EYEM3M4pwgy5IIwIz7XhmCD2W2ZFWXzlvBqBBdpy+w4+uxWk4LbvunNIOXrJtswMnjo93ZIQ2hqdbq3M12B6z74k6h4NjQ7CxhasGdSTCFR6B/5FejFUhH+0tTsUMXUaux7tKg4OaCbP3ZV7Qk=
distributions: "compile_catalog sdist bdist_wheel"
on:
tags: true
python: "2.7"