My tox.ini file looks like this
[tox]
envlist=py27
[testenv]
deps=
pytest
This fails to find my base python installation which is at D:\python27 and not the standard c:\python27 location
If I change tox.ini to this, it works but looks ugly.
[tox]
envlist=cpy27,dpy27
skip_missing_interpreters=True
toxworkdir={toxinidir}/build/tox
[testenv]
basepython=
cpy27: C:\Python27\python.exe
dpy27: D:\Python27\python.exe
deps=
pytest
so my question, how can I configure tox so it can figure out where python is installed on the windows machine, w/o explicitly specifying the paths as each developer may have it installed it in a different path on their machine.