Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
a04904e5
Commit
a04904e5
authored
Jun 28, 2017
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test/CodingStyle:: include erp5_administration's Check Python Code
parent
e14b1ba0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
product/ERP5Type/tests/CodingStyleTestCase.py
product/ERP5Type/tests/CodingStyleTestCase.py
+14
-0
No files found.
product/ERP5Type/tests/CodingStyleTestCase.py
View file @
a04904e5
...
@@ -94,3 +94,17 @@ class CodingStyleTestCase(ERP5TypeTestCase):
...
@@ -94,3 +94,17 @@ class CodingStyleTestCase(ERP5TypeTestCase):
# Return results
# Return results
if
len
(
message_list
):
if
len
(
message_list
):
raise
self
.
failureException
(
'
\
n
'
.
join
(
map
(
lambda
x
:
repr
(
x
),
message_list
)))
raise
self
.
failureException
(
'
\
n
'
.
join
(
map
(
lambda
x
:
repr
(
x
),
message_list
)))
def
test_PythonSourceCode
(
self
):
"""test python script from the tested business templates.
reuses BusinessTemplate_getPythonSourceCodeMessageList from erp5_administration
"""
if
'erp5_administration'
not
in
self
.
getBusinessTemplateList
():
self
.
skipTest
(
'erp5_administration needs be installed to check python source code'
)
self
.
maxDiff
=
None
for
business_template
in
self
.
portal
.
portal_templates
.
contentValues
():
if
business_template
.
getTitle
()
in
self
.
getTestedBusinessTemplateList
():
self
.
assertEqual
([],
business_template
.
BusinessTemplate_getPythonSourceCodeMessageList
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment