How to run upstream test suite that uses ‘tox’?

2013-11-16 Thread Ben Finney
Howdy all, I'm trying to run the test suite of a packagfe I'm maintaining. Upstream only supports running the test suite using ‘tox’: $ tox -e py27,py33 But this fails in a Debian build environment because ‘tox’ expects to install packages from PyPI, and ignores already-installed OS packages

Re: How to run upstream test suite that uses ‘tox’?

2013-11-16 Thread Vincent Bernat
❦ 16 novembre 2013 10:06 CET, Ben Finney  : > Alternatively, I don't really care about the special features of ‘tox’; > I only want to run the test suite with the specific PYthon version. What > can I do in the build environment to run the test suite as ‘tox’ would > run it? You could just run t

Re: How to run upstream test suite that uses ‘tox’?

2013-11-16 Thread Ben Finney
Vincent Bernat writes: > You could just run the command specified in tox.ini, eg "python setup.py > test". Okay. I'll need to request upstream de-couple the test commands (there are several commands specified in ‘tox.ini’) from ‘tox’. Where should I direct upstream to read about ‘setup.py test