Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
5619509c
Commit
5619509c
authored
Sep 27, 2016
by
Jim Fulton
Committed by
GitHub
Sep 27, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #120 from zopefoundation/coveralls
Enable using coverage and coveralls for coverage reporting.
parents
bdecbf61
d797b193
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
9 deletions
+28
-9
.coveragerc
.coveragerc
+5
-4
.gitignore
.gitignore
+2
-0
.travis.yml
.travis.yml
+11
-2
buildout.cfg
buildout.cfg
+10
-3
No files found.
.coveragerc
View file @
5619509c
[run]
# source = ...
# omit = ...
# cover_pylib = False
# branch = True
source = src/ZODB/
parallel = true
omit =
src/ZODB/tests/*
src/ZODB/scripts/tests/*
[report]
exclude_lines =
...
...
.gitignore
View file @
5619509c
...
...
@@ -18,3 +18,5 @@ dist
testing.log
.eggs/
.dir-locals.el
htmlcov
tmp
.travis.yml
View file @
5619509c
...
...
@@ -16,13 +16,22 @@ matrix:
-
os
:
linux
python
:
3.5
install
:
-
pip install -U pip
-
pip install zc.buildout
-
buildout $BUILOUT_OPTIONS
script
:
-
bin/test -v1j99
-
if [[ $TRAVIS_PYTHON_VERSION != 'pypy3' ]]; then cd doc; make html; fi
-
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then bin/coverage run bin/coverage-test -v1j99; fi
-
if [[ $TRAVIS_PYTHON_VERSION == 'pypy' || $TRAVIS_PYTHON_VERSION == 'pypy3' ]]; then bin/test -v1j99; fi
-
if [[ $TRAVIS_PYTHON_VERSION != 'pypy3' ]]; then pushd doc; make html; popd; fi
-
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi
# install early enough to get into the cache
after_success
:
-
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then bin/coverage combine; fi
-
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi
notifications
:
email
:
false
cache
:
directories
:
-
$HOME/.cache/pip
-
eggs
before_cache
:
-
rm -f $HOME/.cache/pip/log/debug.log
buildout.cfg
View file @
5619509c
...
...
@@ -2,6 +2,7 @@
develop = .
parts =
test
coverage-test
scripts
sphinx
...
...
@@ -22,13 +23,18 @@ defaults = ['--all']
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
working-directory = .
eggs =
${test:eggs}
coverage
initialization =
import os, tempfile
try: os.mkdir('tmp')
except: pass
tempfile.tempdir = os.path.abspath('tmp')
defaults = ['--coverage', '${buildout:directory}/coverage']
if 'COVERAGE_PROCESS_START' not in os.environ: os.environ['COVERAGE_PROCESS_START'] = '.coveragerc'
else: import coverage; coverage.process_startup()
defaults = ['--all']
[coverage-report]
recipe = zc.recipe.egg
...
...
@@ -39,7 +45,8 @@ arguments = ('${buildout:directory}/coverage',
[scripts]
recipe = zc.recipe.egg
eggs = ${test:eggs}
eggs =
${coverage-test:eggs}
interpreter = py
[sphinx]
...
...
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