forked from OCA/OpenUpgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
64 lines (58 loc) · 3.28 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
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.6"
env:
- DB=openupgrade ODOO=./openerp-server
# Need flake8 for pep8 testing
install:
- pip install flake8==3.4.1 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
# Install 8.0's requirements as 7.0 does not contain this file, plus a 7.0 specific dependency
- pip install -q -r requirements.txt
- pip install pywebdav
- createdb $DB
- wget -q -O- https://github.com/OCA/OpenUpgrade/releases/download/databases/7.0.psql | pg_restore -d $DB --no-owner
- cat openerp/addons/base/migrations/*/tests/*.yml addons/*/migrations/*/tests/*.yml > ../test_data70.yml
# Roundtrip to previous release to update the test database with additional test data
# Loading and committing test data without triggering post tests needs https://github.com/odoo/odoo/pull/13146. This is now included in OpenUpgrade.
- git fetch --depth 2 origin 7.0
- git reset --hard `git ls-remote |grep refs/heads/7.0 |awk '{print $1}'`
- $ODOO --addons-path openerp/addons,addons --database=$DB --test-file=`readlink -f ../test_data70.yml` --test-commit --stop-after-init
- git reset -q --hard $TRAVIS_COMMIT
# don't use pypi's openupgradelib, but the one from source to avoid choking
# on unreleased features in openupgradelib
- pip install --ignore-installed git+https://github.com/OCA/openupgradelib.git@master
# select modules and perform the upgrade
- MODULES_OLD=base,$(sed -n '/^+========/,$p' openerp/openupgrade/doc/source/modules70-80.rst | grep "Done\|Partial\|Nothing" | grep -v "theme_" | sed -r -n 's/((^\| *\|del\| *)|^\|)([0-9a-z_]*) *\|.*$/\3/g p' | sed '/^\s*$/d' | paste -d, -s)
- MODULES_NEW=base,$(sed -n '/^+========/,$p' openerp/openupgrade/doc/source/modules70-80.rst | grep "Done\|Partial\|Nothing" | grep -v "theme_" | sed -r -n 's/((^\| *\|new\| *)|^\|)([0-9a-z_]*) *\|.*$/\3/g p' | sed '/^\s*$/d' | paste -d, -s)
- psql $DB -c "update ir_module_module set state='uninstalled' where name not in ('$(echo $MODULES_OLD | sed -e "s/,/','/g")')"
- echo Testing modules $MODULES_NEW
- OPENUPGRADE_TESTS=1 coverage run $ODOO --database=$DB --update=$MODULES_NEW --stop-after-init
after_success:
coveralls