diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-14 13:40:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-14 13:40:14 -0400 |
commit | 13ed869c6be652f0b7729cebb26583d03c7ab12a (patch) | |
tree | 4081c110d336d83ccb0f2d83c004a249a46e3c3f /metacov.ini | |
parent | e626cb5cf730217fbedc3d06b80215c09bbe7013 (diff) | |
download | python-coveragepy-git-13ed869c6be652f0b7729cebb26583d03c7ab12a.tar.gz |
Minimal IronPython support.
IronPython is weird: 2.7.7 has "str is unicode", and unicode.encode produces
unicode! f_lasti is missing, and frame globals are missing.
Diffstat (limited to 'metacov.ini')
-rw-r--r-- | metacov.ini | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/metacov.ini b/metacov.ini index b25af6eb..55d0225e 100644 --- a/metacov.ini +++ b/metacov.ini @@ -39,11 +39,15 @@ exclude_lines = pragma: only jython skip.*Jython + # IronPython isn't included in metacoverage. + pragma: only ironpython + partial_branches = pragma: part covered pragma: if failure if env.TESTING: if .* env.JYTHON + if .* env.IRONPYTHON ignore_errors = true precision = 1 |