Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
fdd21224
Commit
fdd21224
authored
5 years ago
by
Calen Pennington
Browse files
Options
Downloads
Patches
Plain Diff
Check the test-suite specific coverage file, and upload it earlier in the process
parent
f3daa423
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pavelib/tests.py
+4
-2
4 additions, 2 deletions
pavelib/tests.py
scripts/jenkins-report.sh
+5
-4
5 additions, 4 deletions
scripts/jenkins-report.sh
with
9 additions
and
6 deletions
pavelib/tests.py
+
4
−
2
View file @
fdd21224
...
...
@@ -331,12 +331,14 @@ def coverage():
report_dir
=
Env
.
REPORT_DIR
rcfile
=
Env
.
PYTHON_COVERAGERC
if
not
(
report_dir
/
'
.coverage
'
).
isfile
():
combined_report_file
=
report_dir
/
'
{}.coverage
'
.
format
(
os
.
environ
.
get
(
'
TEST_SUITE
'
,
''
))
if
not
combined_report_file
.
isfile
():
# This may be that the coverage files were generated using -p,
# try to combine them to the one file that we need.
sh
(
u
"
coverage combine --rcfile={}
"
.
format
(
rcfile
))
if
not
os
.
path
.
getsize
(
report_dir
/
'
.coverage
'
)
>
50
:
if
not
os
.
path
.
getsize
(
combined_report_file
)
>
50
:
# Check if the .coverage data file is larger than the base file,
# because coverage combine will always at least make the "empty" data
# file even when there isn't any data to be combined.
...
...
This diff is collapsed.
Click to expand it.
scripts/jenkins-report.sh
+
5
−
4
View file @
fdd21224
#!/usr/bin/env bash
set
-e
set
-x
# This script generates coverage and diff cover reports, and optionally
# reports this data to codecov.io. The following environment variables must be
...
...
@@ -14,6 +15,10 @@ source scripts/jenkins-common.sh
# Get the diff coverage and html reports for unit tests
paver coverage
-b
$TARGET_BRANCH
if
[[
-n
"
$PYTEST_CONTEXTS
"
]]
;
then
paver upload_coverage_to_s3
fi
# Test for the CodeCov API token
if
[
-z
$CODE_COV_TOKEN
]
;
then
echo
"codecov.io API token not set."
...
...
@@ -27,7 +32,3 @@ fi
# JUnit test reporter will fail the build
# if it thinks test results are old
touch
`
find
.
-name
*
.xml
`
||
true
if
[[
-n
"
$PYTEST_CONTEXTS
"
]]
;
then
paver upload_coverage_to_s3
fi
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