Commit 570c0f3 Sandy Carter
committed
1 parent 5cd5787 commit 570c0f3 Copy full SHA for 570c0f3
File tree 5 files changed +764
-0
lines changed
5 files changed +764
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Config file .coveragerc
2
+
3
+ [report]
4
+ include =
5
+ */manufacture/*
6
+
7
+ omit =
8
+ */tests/*
9
+ *__init__.py
10
+
11
+ # Regexes for lines to exclude from consideration
12
+ exclude_lines =
13
+ # Have to re-enable the standard pragma
14
+ pragma: no cover
15
+
16
+ # Don't complain about null context checking
17
+ 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"
8
+
9
+ virtualenv :
10
+ system_site_packages : true
11
+
12
+ install :
13
+ - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
14
+ - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
15
+ - travis_install_nightly ${VERSION}
16
+ - $HOME/maintainer-quality-tools/travis/travis_install_nightly ${VERSION}
17
+
18
+ script :
19
+ - travis_run_flake8
20
+ - travis_run_tests ${VERSION}
21
+
22
+ after_success :
23
+ coveralls
You can’t perform that action at this time.
0 commit comments