forked from acsone/bobtemplates.odoo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
46 lines (39 loc) · 1.42 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
language: python
cache: pip
stages:
- name: linting
- name: test
- name: deploy
if: tag IS present
jobs:
include:
- stage: linting
python: 3.6
env: TOXENV=pre_commit
- stage: linting
python: 3.6
env: TOXENV=check_readme
- stage: test
python: 2.7
- stage: test
python: 3.6
- stage: deploy
script: echo "Deploy to PyPi"
deploy:
provider: pypi
user: acsbidoul
password:
secure: S4Yz2N1aEcf0F4FN55fzbeok8nIICgsek6qhq3rvnt2TSmx8J78rbYb4uOrr4yPPjITKr8HWBvRIShqXn/6xO4eS6SugDqQUgOr/Q9iM250UnuobycgqG7/aFC0UBnv7u7Kgcozt2f8h+QbnBNHFY57Asz1Vrga7V8FM8Mqz+NjUZETqP89ML5w7j25W0OzNEO2faaTfcRGveQFY79FzCS5yCJ5njh2QMdvUARZ1yDKaQdiwvspPJ1A4PeP8aUOB+d6Hg4YIsUyjry66Pr2w2UsBFrV+V0hyRJXAX+XdoaH8qN6qnLXzfnSSlKONnzl3cRXztY+zZG13vHJCc2iPaYRjolr0432q4YXRlYn+pplEfYsrVjUD3NV+C6kKI8DF2Hf6itPcYGKsaOKuD9msH9tDXzhjQdPH4q4kmVly/65JlqyuCYcqo/u+ACwtyiDoA7SZWQnxu4I/CVVJtK+fgKfxeWimTrEvOG1un1o11Cd8Lgx+iRyan0oGypnKrGYmWYhqFydW5i8BPBQm194BSCHqVBBAiYwClaAniVJ+m4mY9ftOKIwDRd8/yKpFMQn55wRh3Lfgh9wcbbW50quKcQRhzNQW+fFGHX3ccQd76VBRzSodVwwG8s+fylhX0oy4BZeVSNrBAt4wQPRfpTO7i6M6vQZwEZF9hdS1oCd3Ds4=
distributions: "sdist bdist_wheel"
skip_upload_docs: true
on:
repo: acsone/bobtemplates.odoo
branch: master
tags: true
install:
- pip install tox-travis
- pip install codecov
script:
- tox
after_success:
- coveralls