Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fluidparticles
MigFlow
Commits
e3e92320
Commit
e3e92320
authored
Jun 14, 2019
by
Jonathan Lambrechts
Browse files
refix mbtest return code
parent
f9d74683
Pipeline
#5434
failed with stage
in 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
validation/mbtests.py
View file @
e3e92320
...
...
@@ -9,6 +9,6 @@ for t in all_tests :
suite
.
addTest
(
unittest
.
defaultTestLoader
.
loadTestsFromName
(
t
))
r
=
unittest
.
TextTestRunner
().
run
(
suite
)
print
(
r
)
sys
.
exit
(
r
.
wasSuccessful
())
sys
.
exit
(
0
if
r
.
wasSuccessful
()
else
1
)
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