Skip to content

Commit 293718d

Browse files
committedOct 11, 2016
Merge branch '8.0' into 9.0
2 parents e3022e0 + c8db149 commit 293718d

File tree

3 files changed

+100
-1
lines changed

3 files changed

+100
-1
lines changed
 

‎.travis.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
language: python
2+
sudo: false
3+
cache:
4+
apt: true
5+
directories:
6+
- $HOME/.cache/pip
7+
8+
python:
9+
- "2.7"
10+
11+
addons:
12+
apt:
13+
# only add the two lines below if you need wkhtmltopdf for your tests
14+
# sources:
15+
# - pov-wkhtmltopdf
16+
# Search your sources alias here:
17+
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
18+
packages:
19+
- expect-dev # provides unbuffer utility
20+
- python-lxml # because pip installation is slow
21+
- python-simplejson
22+
- python-serial
23+
- python-yaml
24+
# for aeroo
25+
- cups
26+
- libcups2-dev
27+
# Search your packages here:
28+
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
29+
# - wkhtmltopdf # only add if needed and check the before_install section below
30+
31+
# set up an X server to run wkhtmltopdf.
32+
#before_install:
33+
# - "export DISPLAY=:99.0"
34+
# - "sh -e /etc/init.d/xvfb start"
35+
36+
env:
37+
global:
38+
- VERSION="9.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
39+
# - TRANSIFEX_USER='transbot@odoo-community.org'
40+
# This line contains the encrypted transifex password
41+
# To encrypt transifex password, install travis ruby utils with:
42+
# $ gem install travis --user-install
43+
# and use:
44+
# $ travis encrypt TRANSIFEX_PASSWORD=your-password -r owner/project
45+
# Secure list for current OCA projects is in https://github.com/OCA/maintainer-quality-tools/issues/194
46+
# - secure: PjP88tPSwimBv4tsgn3UcQAD1heK/wcuSaSfhi2xUt/jSrOaTmWzjaW2gH/eKM1ilxPXwlPGyAIShJ2JJdBiA97hQufOeiqxdkWDctnNVVEDx2Tk0BiG3PPYyhXPgUZ+FNOnjZFF3pNWvzXTQaB0Nvz8plqp93Ov/DEyhrCxHDs=
47+
# Use the following lines if you need to manually change the transifex project slug or/and the transifex organization.
48+
# The default project slug is owner-repo_name-version (with dash in the version string).
49+
# The default organization is the owner of the repo.
50+
# The default fill up resources (TM) is True.
51+
# The default team is 23907. https://www.transifex.com/organization/oca/team/23907/
52+
# - TRANSIFEX_PROJECT_SLUG=
53+
# - TRANSIFEX_ORGANIZATION=
54+
# - TRANSIFEX_FILL_UP_RESOURCES=
55+
# - TRANSIFEX_TEAM=
56+
57+
matrix:
58+
# - LINT_CHECK="1"
59+
# - TRANSIFEX="1"
60+
- TESTS="1" ODOO_REPO="odoo/odoo"
61+
# - TESTS="1" ODOO_REPO="OCA/OCB"
62+
# either use the two lines above or the two below. Don't change the default if
63+
# it's not necessary (it is only necessary if modules in your repository can't
64+
# be installed in the same database. And you get a huge speed penalty in your
65+
# tests)
66+
# - TESTS="1.0" ODOO_REPO="odoo/odoo" UNIT_TEST="1"
67+
# - TESTS="1.0" ODOO_REPO="OCA/OCB" UNIT_TEST="1"
68+
69+
virtualenv:
70+
system_site_packages: true
71+
72+
install:
73+
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
74+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
75+
- travis_install_nightly
76+
77+
script:
78+
- travis_run_tests
79+
80+
after_success:
81+
- travis_after_tests_success

‎README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1-
Alpha version of Aeroo Reports for odoo V9 aka OpenERP V9
1+
[![Runbot Status](http://runbot.adhoc.com.ar/runbot/badge/flat/7/9.0.svg)](http://runbot.adhoc.com.ar/runbot/repo/github-com-ingadhoc-aeroo_reports-7)
2+
[![Build Status](https://travis-ci.org/ingadhoc/aeroo_reports.svg?branch=9.0)](https://travis-ci.org/ingadhoc/aeroo_reports)
3+
[![Coverage Status](https://coveralls.io/repos/ingadhoc/aeroo_reports/badge.png?branch=9.0)](https://coveralls.io/r/ingadhoc/aeroo_reports?branch=9.0)
4+
[![Code Climate](https://codeclimate.com/github/ingadhoc/aeroo_reports/badges/gpa.svg)](https://codeclimate.com/github/ingadhoc/aeroo_reports)
5+
6+
# Aeroo Reports
7+
8+
[//]: # (addons)
9+
This part will be replaced when running the oca-gen-addons-table script from OCA/maintainer-tools.
10+
[//]: # (end addons)
11+
12+
Translation Status
13+
------------------
14+
[![Transifex Status](https://www.transifex.com/projects/p/ingadhoc-aeroo_reports-9-0/chart/image_png)](https://www.transifex.com/projects/p/ingadhoc-aeroo_reports-9-0)
15+
----
16+
17+
<img alt="ADHOC" src="http://fotos.subefotos.com/83fed853c1e15a8023b86b2b22d6145bo.png" />
18+
**Adhoc SA** - www.adhoc.com.ar

‎requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
git+https://github.com/aeroo/aeroolib.git
2+
pycups

0 commit comments

Comments
 (0)