-
Notifications
You must be signed in to change notification settings - Fork 1
Chore/lint config migration #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 18 commits
444115b
0289861
811a351
0df50c2
56fba1c
c2e3119
b475877
8ab04a7
d5c3b96
8979100
7a7b17b
f8ac3b9
7829bf4
0ce2eb2
560b348
9a34753
7bd3831
25ee155
952025c
564f3f4
c328fa2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,22 +13,14 @@ valid-odoo-versions=19.0 | |
| [MESSAGES CONTROL] | ||
| disable=all | ||
|
|
||
| # Mandatory checks: these block CI. High-volume cosmetic checks | ||
| # (attribute-string-redundant, except-pass, missing-return, etc.) | ||
| # are in the optional .pylintrc only, enforced via --exit-zero. | ||
| enable=anomalous-backslash-in-string, | ||
| api-one-deprecated, | ||
| api-one-multi-together, | ||
| assignment-from-none, | ||
| attribute-deprecated, | ||
| class-camelcase, | ||
| dangerous-default-value, | ||
| dangerous-view-replace-wo-priority, | ||
| development-status-allowed, | ||
| duplicate-id-csv, | ||
| duplicate-key, | ||
| duplicate-xml-fields, | ||
| duplicate-xml-record-id, | ||
| eval-referenced, | ||
| eval-used, | ||
| incoherent-interpreter-exec-perm, | ||
| license-allowed, | ||
| manifest-author-string, | ||
| manifest-deprecated-key, | ||
|
|
@@ -37,58 +29,23 @@ enable=anomalous-backslash-in-string, | |
| manifest-version-format, | ||
| method-compute, | ||
| method-inverse, | ||
| method-required-super, | ||
| method-search, | ||
| openerp-exception-warning, | ||
| pointless-statement, | ||
| pointless-string-statement, | ||
| print-used, | ||
| redundant-keyword-arg, | ||
| redundant-modulename-xml, | ||
| reimported, | ||
| relative-import, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical
|
||
| return-in-init, | ||
| rst-syntax-error, | ||
| sql-injection, | ||
| too-few-format-args, | ||
| translation-field, | ||
| translation-required, | ||
| unreachable, | ||
| use-vim-comment, | ||
| wrong-tabs-instead-of-spaces, | ||
| xml-syntax-error, | ||
| attribute-string-redundant, | ||
| character-not-valid-in-resource-link, | ||
| consider-merging-classes-inherited, | ||
| context-overridden, | ||
| create-user-wo-reset-password, | ||
| dangerous-filter-wo-user, | ||
| dangerous-qweb-replace-wo-priority, | ||
| deprecated-data-xml-node, | ||
| deprecated-openerp-xml-node, | ||
| duplicate-po-message-definition, | ||
| except-pass, | ||
| file-not-used, | ||
| invalid-commit, | ||
| manifest-maintainers-list, | ||
| missing-newline-extrafiles, | ||
| missing-readme, | ||
| missing-return, | ||
| odoo-addons-relative-import, | ||
| old-api7-method-defined, | ||
| po-msgstr-variables, | ||
| po-syntax-error, | ||
| renamed-field-parameter, | ||
| resource-not-exist, | ||
| str-format-used, | ||
| test-folder-imported, | ||
| translation-contains-variable, | ||
| translation-positional-used, | ||
| unnecessary-utf8-coding-comment, | ||
| website-manifest-key-not-valid-uri, | ||
| xml-attribute-translatable, | ||
| xml-deprecated-qweb-directive, | ||
| xml-deprecated-tree-attribute, | ||
| external-request-timeout | ||
|
|
||
| [REPORTS] | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI test flag
--no-httpaccidentally removedHigh Severity
The
--no-httpflag was removed from the Odoo test command in CI. This flag prevents the HTTP server from starting during tests and is still present inci-full.ymlandscripts/test_single_module.sh. Without it, each test job starts an unnecessary HTTP server, wasting resources and risking port-conflict flakiness. In a lint-config-migration PR, this behavioral change looks unintentional.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it was intended to test the rest API