1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
# mode: run
# tag: coverage,trace
"""
PYTHON setup.py build_ext -i
PYTHON -c "import shutil; shutil.move('ext_src/ext_pkg', 'ext_pkg')"
PYTHON -m coverage run coverage_test.py
PYTHON -m coverage report
"""
######## setup.py ########
from distutils.core import setup, Extension
from Cython.Build import cythonize
setup(ext_modules = cythonize([
'pkg/*.pyx',
]))
setup(
name='ext_pkg',
package_dir={'': 'ext_src'},
ext_modules = cythonize([
Extension('ext_pkg._mul', ['ext_src/ext_pkg/mul.py'])
]),
)
######## .coveragerc ########
[run]
plugins = Cython.Coverage
######## pkg/__init__.py ########
from .test_ext_import import test_add
######## pkg/test_ext_import.pyx ########
# cython: linetrace=True
# distutils: define_macros=CYTHON_TRACE=1
import ext_pkg
cpdef test_add(int a, int b):
return a + ext_pkg.test_mul(b, 2)
######## ext_src/ext_pkg/__init__.py ########
from .mul import test_mul
######## ext_src/ext_pkg/mul.py ########
from __future__ import absolute_import
def test_mul(a, b):
return a * b
try:
from ._mul import *
except ImportError:
pass
######## coverage_test.py ########
from pkg import test_add
assert 5 == test_add(1, 2)
|