Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
5e59e416
Commit
5e59e416
authored
8 years ago
by
stu
Browse files
Options
Downloads
Patches
Plain Diff
add codecov to jenkins-report
parent
fb10ab07
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/jenkins-report.sh
+25
-1
25 additions, 1 deletion
scripts/jenkins-report.sh
with
25 additions
and
1 deletion
scripts/jenkins-report.sh
+
25
−
1
View file @
5e59e416
#!/usr/bin/env bash
# Note: this script is in a temporary state. In an effort to get the
# platform off of coveralls and onto codecov, we will be temporarily
# using both. In order to no longer use coveralls, a change must be
# made in https://github.com/edx/jenkins-job-dsl, as well as removing
# the coveralls block below
# This script is used by the edx-platform-unit-coverage jenkins job.
if
[
$#
-eq
2
]
;
then
COMMIT
=
$2
else
echo
"Incorrect number of arguments passed to this script!"
echo
"Please supply the following values to this script:"
echo
"1) git hash of the commit being tested"
echo
"2) coveralls token"
exit
1
fi
source
scripts/jenkins-common.sh
# Get the diff coverage and html reports for unit tests
paver coverage
# Send the coverage data to codecov. Setting the 'COMMMIT' allows the data
# to be sorted by a branch in the codecov UI. The branch is passed as a
# param to the coverage job on Jenkins. The 'CODE_COV_TOKEN' should be
# available as an environment variable.
pip
install
codecov
==
2.0.5
codecov
--token
=
$CODE_COV_TOKEN
--commit
=
$COMMIT
# THIS BLOCK WILL BE REMOVED
# Send the coverage data to coveralls. Setting 'TRAVIS_BRANCH' allows the
# data to be sorted by branch in the coveralls UI. The branch is passed as
# a param to the coverage job on jenkins.
pip
install
coveralls
==
1.0
COVERALLS_REPO_TOKEN
=
$1
TRAVIS_BRANCH
=
$
2
coveralls
COVERALLS_REPO_TOKEN
=
$1
TRAVIS_BRANCH
=
$
COMMIT
coveralls
# Get coverage reports for bok choy
# paver bokchoy_coverage
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment