-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
re-fix cythonize #101
re-fix cythonize #101
Conversation
@jswhit The coverage is back to ~87%, see the travis-ci logs for this job, which is what we expect. In summary, the |
Hopefully it still will cythonize the extension even if cython is not installed, since cython is in setup_requires. (that was the source of the problem reported in issue #34) What is cythonize doing that distutils Extension doesn't to enable the coverage stuff to work? Is it not using the |
Not sure... Seems like those kwargs passed to But to be honest, I don't think that this is a problem that we need to solve. We only want test coverage to work in travis-ci, and that's the case now with the changes in this PR. As on travis-ci we ensure that We also don't want Seems like a happy compromise to me. Thoughts? Am I missing a trick here @jswhit ? |
Agreed. I'll see if I can test in an environment without cython installed, just to make sure it works as expected. |
Works as expect in a environment without cython, merging now.... |
Thanks @jswhit and apologies for the carnage... |
no worries, casualties were very minor. |
Addresses #34 (again, sorry)
Closes #98