We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8e223a commit f633fd3Copy full SHA for f633fd3
setup.py
@@ -11,7 +11,7 @@
11
from setuptools.dist import Distribution
12
13
# Enable code coverage for C code: we cannot use CFLAGS=-coverage in tox.ini, since that may mess with compiling
14
-# dependencies (e.g. numpy). Therefore we set SETUPPY_CFLAGS=-coverage in tox.ini and copy it to CFLAGS here (after
+# dependencies (e.g. numpy). Therefore, we set SETUPPY_CFLAGS=-coverage in tox.ini and copy it to CFLAGS here (after
15
# deps have been safely installed).
16
if 'TOX_ENV_NAME' in os.environ and os.environ.get('SETUPPY_EXT_COVERAGE') == 'yes' and platform.system() == 'Linux':
17
CFLAGS = os.environ['CFLAGS'] = '-fprofile-arcs -ftest-coverage'
0 commit comments