Using py.test with coverage doesn’t include imports

@hynekcer gave me the right idea. But basically the easiest solution lies somewhere else: Get rid of pytest-cov! Use coverage run –source jedi -m py.test coverage report instead!!! This way you’re just running a coverage on your current py.test configuration, which works perfectly fine! It’s also philosophically the right way to go: Make each program … Read more