PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Saturday the 3rd of May, 2014

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[00:02:02] <linovia> anyone using pew here ?
[00:02:57] <dstufft> No idea what pew is, so I guess not me :)
[00:03:12] <linovia> it's supposed to be an alternative to virtualenvwrapper
[03:21:52] <slashfoo> hey guys, I'm trying to setup a `python setup.py coverage` command that is a setuptools.command.test, and I provide a tests_require=['pytest', 'pytest-cov'] but it, for some reason tries to 'only' install pytest-cov and bails out because pytest isn't there with "pkg_resources.DistributionNotFound: pytest" (and I'm testing this in a python3.4 virtualenv that has nothing in it, as well as a python2.7, any ideas?
[03:22:38] <slashfoo> I've tried giving it 'pytest_cov' as a substitute, but no, it apparently makes it ignore that 'pytest' even exists in that list
[03:26:14] <slashfoo> gist of what I'm seeing when I run `python setup.py coverage` https://gist.github.com/slashfoo/54594886979f4e14dbfc
[04:00:26] <slashfoo> it's funny that if I run `python setup.py coverage` twice, the first one fails, and the second time it passes because of the .egg files that got installed from the failed attemp
[04:03:33] <slashfoo> flipping test_require order to ['pytest-cov', 'pytest'] solves the issue, this smells like a bug, I'll keep digging see if I can find where before you guys wake up :)
[08:46:18] <slashfoo> reported a bug https://bitbucket.org/pypa/setuptools/issue/196/tests_require-pytest-pytest-cov-breaks I left my breadcrumbs on the gist if anyone in the channel is interested