Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
2a5f8e57
Commit
2a5f8e57
authored
Sep 07, 2018
by
Matthieu Muffato
Browse files
Added the (small) Python test-suite to Travis
parent
8f779631
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
scripts/travis_run_tests.sh
scripts/travis_run_tests.sh
+6
-3
No files found.
scripts/travis_run_tests.sh
View file @
2a5f8e57
...
...
@@ -26,9 +26,12 @@ if [ "$COVERALLS" = 'true' ]; then
else
prove
-r
t
fi
rt
=
$?
if
[
$rt
-eq
0
]
;
then
(
cd
wrappers/python3
;
python3
-m
unittest
-v
eHive.Process
)
rtp
=
$?
if
[[
(
$rt
-eq
0
)
&&
(
$rtp
-eq
0
)
]]
;
then
if
[
"
$COVERALLS
"
=
'true'
]
;
then
echo
"Running Devel::Cover coveralls report"
cover
--nosummary
-report
coveralls
...
...
@@ -36,5 +39,5 @@ if [ $rt -eq 0 ]; then
fi
exit
$?
else
exit
$rt
exit
255
fi
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