forked from OCA/OpenUpgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (48 loc) · 2.17 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
language: python
sudo: false
python:
- "2.7"
addons:
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
- python-simplejson
- python-serial
- python-yaml
postgresql: "9.4"
env:
- DB=openupgrade ODOO=./openerp-server OPENUPGRADE_TESTS=1
# Need flake8 for pep8 testing
install:
- pip install flake8 coveralls
# Test with flake for:
# * migration scripts
# * scripts/ directory
# * openerp/addons/openupgrade* directories
# * openerp/openupgrade/ directory
# use a max length of 120
script:
- flake8 scripts --max-line-length=120
- flake8 openerp/openupgrade --max-line-length=120
- flake8 openerp/addons/openupgrade* --max-line-length=120 --filename=__init__.py --ignore=F401
- flake8 openerp/addons/openupgrade* --max-line-length=120 --exclude=__init__.py
# only flake8 migration scripts from the openupgrade project, presumably
# identifyable by using the openupgrade helpers
- flake8 --max-line-length=120 $(find . -name 'pre-*.py' -or -name 'post-*.py' -exec grep -q openupgrade {} \; -print)
- flake8 openerp/addons/*/migrations/*/tests/ --max-line-length=120
- flake8 addons/*/migrations/*/tests/ --max-line-length=120
- npm install -g less less-plugin-clean-css
- pip install -q -r requirements.txt
# don't use pypi's openupgradelib, but the one from source to avoid choking
# on unreleased features in openupgradelib
- pip uninstall -q --yes openupgradelib
- pip install -q git+https://github.com/OCA/openupgradelib.git@master
- createdb $DB
- wget -q -O- https://github.com/OCA/OpenUpgrade/releases/download/databases/8.0.psql | pg_restore -d $DB --no-owner
- MODULES=base,$(sed -n '/^+========/,$p' openerp/openupgrade/doc/source/modules80-90.rst | grep "Done\|Partial" | sed -n '/^|/ s/^|\([0-9a-z_]*\) *|.*$/\1/g p' | paste -d, -s)
- psql $DB -c "update ir_module_module set state='uninstalled' where name not in ('$(echo $MODULES | sed -e "s/,/','/g")')"
- echo Testing modules $MODULES
- coverage run $ODOO --database=$DB --update=$MODULES --stop-after-init
after_success:
coveralls