Skip to content
Snippets Groups Projects
Commit 8ac7b290 authored by Carlos Mastalli's avatar Carlos Mastalli
Browse files

[unittest] Configure the CI jobs

parent f26a1801
No related branches found
No related tags found
No related merge requests found
image: gepgitlab.laas.fr:4567/Gepetto/example-robot-data
test:
script:
- cd unittest && python test_all.py
import unittest
import sys
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))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment