index
:
delta/cython.git
0.17
0.18.x
0.19.x
0.20.x
0.21.x
0.22.x
0.23.x
0.24.x
0.25.x
0.27.x
0.28.x
0.29.x
cgetter_rewrite
ci_compile_all
clean_up_capi_features
cy3str
dalcinl-embedsignature
dalcinl/fix-c-used-variable
dalcinl/fix-c-warning
dalcinl/fix-cpdef-warning
dalcinl/fix-getbuffer
dalcinl/fix-module-cleanup
dalcinl/fix-release
dalcinl/fix-travis
dalcinl/fix-try-finally
dalcinl/mark-unused-vars
dalcinl/no-old-python
dalcinl/numpy
dropPy32
enable_limited_api_file_tests
faster_absolute_reimports
faster_pymultiply
fix-pypy3
fix_build_ext
fix_gh3246
fix_srctree_tests_on_windows
fixed_code_objects
full_code_writer
gh1461_cover_sig_line
gh1461_cover_sig_line_master
gh1807_getitem_mapping_first
gh2056_special_binop
gh2306_coro_frame
gh2343_heap_types
gh2564_enable_binding
gh2565_language_level_3str
gh2580_enable_generator_stop
gh2665_package_init_pyx
gh2670_win_intop
gh2692_remove_py26_support
gh2781_pep487_init_subclass
gh2983_lambda_sig
gh3090_always_allow_keywords
gh3092_percent_d_format
gh3481_defaults_warning
gh3545_reduce_cython_reimport
gh3554_smart_exit_gil
gh3573_versioned_pxds
gh3578_refleak
gh3625_returns_exc
gh3678_undep_unicode
gh884_docstrings
gsoc-kurt-regraft
ipython711
ipython711_master
less_tp_new
linting
ll3_new_style_classes
master
msvc_cpp
neg-overflow
no-old-python
optimise_pysequence_list
patma-preview
pep484_typing
pep515_underscores_in_numbers
pkg_init_windows
release
robertwb-rect
simplify_utility_loading
smarter_bounds_checks
test_stats
travis-ci
travis_cleanup
tune_calls
update_test_dependencies
github.com: cython/cython.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Cython
/
Coverage.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix coverage with packages in "src" layout (#3831)
Ruben Vorderman
2022-09-24
1
-0
/
+17
*
Add a longer docstring comment to explain how the coverage plugin maps trace ...
Stefan Behnel
2022-08-06
1
-0
/
+38
*
Add a comment about the way the Coverage plugin finds out what to report to c...
Stefan Behnel
2022-02-25
1
-0
/
+4
*
Refuse to overwrite output C/C++ files that probably were not created by Cyth...
scoder
2021-05-20
1
-7
/
+6
*
Do not cover lines that were excluded in the coveragerc config file (GH-3682)
Mathias Laurin
2020-09-07
1
-3
/
+36
*
Fix coverage analysis for code in separate source directory (see GH-1985) (GH...
Antonio Valentino
2019-08-23
1
-7
/
+9
*
Refactor parsing function in code coverage plugin to split the actual parsing...
Stefan Behnel
2019-03-02
1
-49
/
+56
*
Exclude non-executable lines from coverage analysis (anything that does not g...
Stefan Behnel
2019-03-02
1
-2
/
+14
*
Fix inconsistency between trace files and report files
wjsi
2019-01-19
1
-2
/
+4
*
Support more C file extensions when searching modules during coverage analysi...
Stefan Behnel
2018-05-18
1
-10
/
+13
*
Do not try to report coverage on files that we do not have sources for. See #...
Stefan Behnel
2017-11-10
1
-0
/
+2
*
Merge pull request #1900 from MaxBo/MaxBo-patch-1
scoder
2017-10-01
1
-4
/
+5
|
\
|
*
Merge remote-tracking branch 'upstream/master' into MaxBo-patch-1
MaxBo
2017-09-30
1
-1
/
+1
|
|
\
|
*
|
add regex to ######## coverage_test.py ########
MaxBo
2017-09-30
1
-1
/
+0
|
*
|
Merge remote-tracking branch 'upstream/master' into MaxBo-patch-1
MaxBo
2017-09-30
1
-2
/
+8
|
|
\
\
|
*
|
|
use canonical_filename from coverage.files
MaxBo
2017-09-30
1
-33
/
+5
|
*
|
|
Update Coverage.py
Max Bohnet
2017-09-29
1
-5
/
+5
|
*
|
|
Update Coverage.py
Max Bohnet
2017-09-29
1
-2
/
+32
*
|
|
|
Include coverage support for PyPy extension modules.
Stefan Behnel
2017-10-01
1
-1
/
+1
|
|
_
|
/
|
/
|
|
*
|
|
Generalise .so file regex even further as the platform suffix of extension mo...
Stefan Behnel
2017-09-30
1
-1
/
+1
|
|
/
|
/
|
*
|
Try to include also Macs in coverage .so file search.
Stefan Behnel
2017-09-30
1
-2
/
+8
*
|
Include Windows DLL suffix pattern in coverage file search.
Stefan Behnel
2017-09-30
1
-1
/
+1
|
/
*
Made tracer search external modules
Aaron M. Watson
2015-12-10
1
-1
/
+1
*
Fixed a bug
Aaron M. Watson
2015-12-10
1
-1
/
+1
*
Added search of module paths for dependent files
Aaron M. Watson
2015-12-10
1
-0
/
+7
*
adapt Coverage plugin to coverage 4.0b2
Stefan Behnel
2015-09-01
1
-2
/
+11
*
Py3 fixes in Coverage plugin
Stefan Behnel
2015-09-01
1
-3
/
+3
*
fix coverage reporting for compiled .py files by disabling disfunctional cove...
Stefan Behnel
2015-07-27
1
-2
/
+5
*
adapt coverage plugin to new API in coverage.py 4.0a7, minor changes
Stefan Behnel
2015-07-14
1
-1
/
+7
*
coverage: cache parsed C files to avoid parsing them again
Stefan Behnel
2015-03-03
1
-36
/
+45
*
coverage: avoid call tracing overhead by caching absolute file paths
Stefan Behnel
2015-03-03
1
-2
/
+17
*
coverage: exclude code lines that are obviously not executable (e.g. struct d...
Stefan Behnel
2015-02-22
1
-1
/
+10
*
coverage: read Cython source files with correct encoding
Stefan Behnel
2015-02-22
1
-3
/
+3
*
coverage: do not mark non-code lines as 'excluded' to make them show up norma...
Stefan Behnel
2015-02-22
1
-25
/
+15
*
adapt to recent changes in coverage.py package
Stefan Behnel
2015-02-22
1
-3
/
+0
*
coverage: prefer real source file for line annotation if we find it
Stefan Behnel
2015-02-22
1
-2
/
+7
*
coverage: try harder to find the main C source file when the tracer first hit...
Stefan Behnel
2015-02-22
1
-2
/
+27
*
coverage: try harder to find .pxi files, avoid some unnecessary work
Stefan Behnel
2015-02-21
1
-10
/
+24
*
teach Cython.Coverage about "pkg.mod.pyx" file name patterns
Stefan Behnel
2015-02-21
1
-8
/
+20
*
make import of Cython.Coverage module fail if coverage.py isn't compatible (b...
Stefan Behnel
2015-02-21
1
-6
/
+2
*
coverage: fix line counting for source representation
Stefan Behnel
2015-02-20
1
-0
/
+1
*
fix incorrect attribute name
Stefan Behnel
2015-02-20
1
-2
/
+2
*
coverage: add "file_locator" attribute to enable XML reporting
Stefan Behnel
2015-02-20
1
-1
/
+4
*
coverage: support reporting in a separate run (when we haven't traced any fil...
Stefan Behnel
2015-02-20
1
-12
/
+33
*
coverage: prefer .c/.cpp file that was explicitly asked for over trying to fi...
Stefan Behnel
2015-02-20
1
-1
/
+3
*
coverage: strip CPython platform suffix from shared library file paths when l...
Stefan Behnel
2015-02-20
1
-2
/
+10
*
implement coverage analysis support as a plugin for the coverage.py tool
Stefan Behnel
2015-02-13
1
-0
/
+181