Commit 71dc33f 1 parent 66d1ee1 commit 71dc33f Copy full SHA for 71dc33f
File tree 5 files changed +770
-0
lines changed
5 files changed +770
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Config file .coveragerc
2
+ # adapt the include for your project
3
+
4
+ [report]
5
+ include =
6
+ */OCA/purchase-workflow/*
7
+
8
+ omit =
9
+ */tests/*
10
+ *__init__.py
11
+
12
+ # Regexes for lines to exclude from consideration
13
+ exclude_lines =
14
+ # Have to re-enable the standard pragma
15
+ pragma: no cover
16
+
17
+ # Don't complain about null context checking
18
+ if context is None:
Original file line number Diff line number Diff line change
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__ /
3
+ * .py [cod ]
4
+
5
+ # C extensions
6
+ * .so
7
+
8
+ # Distribution / packaging
9
+ .Python
10
+ env /
11
+ bin /
12
+ build /
13
+ develop-eggs /
14
+ dist /
15
+ eggs /
16
+ lib /
17
+ lib64 /
18
+ parts /
19
+ sdist /
20
+ var /
21
+ * .egg-info /
22
+ .installed.cfg
23
+ * .egg
24
+
25
+ # Installer logs
26
+ pip-log.txt
27
+ pip-delete-this-directory.txt
28
+
29
+ # Unit test / coverage reports
30
+ htmlcov /
31
+ .tox /
32
+ .coverage
33
+ .cache
34
+ nosetests.xml
35
+ coverage.xml
36
+
37
+ # Translations
38
+ * .mo
39
+
40
+ # Pycharm
41
+ .idea
42
+
43
+ # Mr Developer
44
+ .mr.developer.cfg
45
+ .project
46
+ .pydevproject
47
+
48
+ # Rope
49
+ .ropeproject
50
+
51
+ # Sphinx documentation
52
+ docs /_build /
53
+
54
+ # Backup files
55
+ * ~
56
+ * .swp
Original file line number Diff line number Diff line change
1
+ language : python
2
+
3
+ python :
4
+ - " 2.7"
5
+
6
+ env :
7
+ - VERSION="8.0" ODOO_REPO="odoo/odoo"
8
+ - VERSION="8.0" ODOO_REPO="OCA/OCB"
9
+
10
+ virtualenv :
11
+ system_site_packages : true
12
+
13
+ install :
14
+ - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
15
+ - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
16
+ - travis_install_nightly
17
+
18
+ script :
19
+ - travis_run_flake8
20
+ - travis_run_tests
21
+
22
+ after_success :
23
+ coveralls
You can’t perform that action at this time.
0 commit comments