Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
[REF] pylint_beta.cfg: Removing beta messages to enable real error
Browse files Browse the repository at this point in the history
  • Loading branch information
moylop260 committed Oct 20, 2015
1 parent bcabd8c commit 15b88cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 35 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ env:
- VERSION="7.0" INCLUDE="test_module,second_module" ODOO_REPO="OCA/OCB" # ODOO_REPO usage example
- VERSION="6.1" INCLUDE="test_module,second_module"
- LINT_CHECK="1" TESTS="0" PYLINT_EXPECTED_ERRORS="15" TRAVIS_PULL_REQUEST="false" # Use main pylint config file
- VERSION=master LINT_CHECK="1" TESTS="0" PYLINT_EXPECTED_ERRORS="15" TRAVIS_PULL_REQUEST="true" # Use PR pylint config file
- VERSION="7.0" LINT_CHECK="1" TESTS="0" PYLINT_EXPECTED_ERRORS="15" TRAVIS_PULL_REQUEST="true" # To check pylint_conf of PR's with old api
- VERSION=master LINT_CHECK="1" TESTS="0" PYLINT_EXPECTED_ERRORS="48" TRAVIS_PULL_REQUEST="true" # Use PR pylint config file
- VERSION="7.0" LINT_CHECK="1" TESTS="0" PYLINT_EXPECTED_ERRORS="33" TRAVIS_PULL_REQUEST="true" # To check pylint_conf of PR's with old api
- VERSION="" LINT_CHECK="1" TESTS="0" PYLINT_EXPECTED_ERRORS="15" TRAVIS_PULL_REQUEST="false" # To check VERSION empty or unset case.

install:
Expand Down
34 changes: 1 addition & 33 deletions travis/cfg/travis_run_pylint_beta.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,9 @@
# pylint configuration file will display them without affecting your build status.

# Beta message and code:
# api-one-multi-together - W8101
# class-camelcase - C8104
# copy-wo-api-one - W8102
# dangerous-filter-wo-user - W7901
# deprecated-module - W0402
# duplicate-xml-record-id - W7902
# incoherent-interpreter-exec-perm - W8201
# manifest-deprecated-key - C8103
# manifest-required-author - C8101
# manifest-required-key - C8102
# missing-readme - C7902
# no-utf8-coding-comment - C8201
# openerp-exception-warning - R8101
# rst-syntax-error - E7901
# too-complex - C0901
# translation-field - W8103
# use-vim-comment - W8202
# xml-syntax-error - E7902

[MESSAGES CONTROL]
enabled2beta=api-one-multi-together,
class-camelcase,
copy-wo-api-one,
dangerous-filter-wo-user,
deprecated-module,
duplicate-xml-record-id,
incoherent-interpreter-exec-perm,
manifest-deprecated-key,
manifest-required-author,
manifest-required-key,
missing-readme,
no-utf8-coding-comment,
openerp-exception-warning,
rst-syntax-error,
enabled2beta=duplicate-xml-record-id,
too-complex,
translation-field,
use-vim-comment,
xml-syntax-error,

0 comments on commit 15b88cd

Please sign in to comment.