Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
example-robot-data
Commits
14c2aca5
Commit
14c2aca5
authored
Mar 06, 2019
by
Carlos Mastalli
Browse files
[unittest] Removed test_all since it's overkill right now
parent
639aadd9
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
14c2aca5
...
...
@@ -2,4 +2,4 @@ image: gepgitlab.laas.fr:4567/Gepetto/example-robot-data
test
:
script
:
-
cd unittest && python test_
all
.py
-
cd unittest && python test_
load
.py
unittest/test_all.py
deleted
100644 → 0
View file @
639aadd9
import
sys
import
unittest
testmodules
=
[
'test_load'
,
]
suite
=
unittest
.
TestSuite
()
for
t
in
testmodules
:
try
:
# If the module defines a suite() function, call it to get the suite.
mod
=
__import__
(
t
,
globals
(),
locals
(),
[
'suite'
])
suitefn
=
getattr
(
mod
,
'suite'
)
suite
.
addTest
(
suitefn
())
except
(
ImportError
,
AttributeError
):
# else, just load all the test cases from the module.
suite
.
addTest
(
unittest
.
defaultTestLoader
.
loadTestsFromName
(
t
))
result
=
unittest
.
TextTestRunner
().
run
(
suite
)
sys
.
exit
(
len
(
result
.
errors
)
+
len
(
result
.
failures
))
Write
Preview
Supports
Markdown
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