I would like to use tox to run my unittests in two virtualenvs, since my application must support 2 different versions of Python.
My problem is that tox requires setup.py , but I don't have a single one, since my application is not a module and has its own installer. At the moment, I do not want to discuss the problems of automating the installation process, because to work with setup.py I just want to run my unittests without having to write setup.py .
Is it possible? Or how can I write an “empty” setup.py that just does nothing? Can you point me to some documentation on this ( distutils documentation explains how to write meaningful setup.py , not empty)?
python unit-testing distutils tox
Kjir Sep 23 '13 at 14:50 2013-09-23 14:50
source share