<div dir="ltr"><div>I'm trying to test specific versions of Python and Django, but also include a general PIP requirements file of additional dependencies to use for all cases.<br><br>As the docs (<a href="http://testrun.org/tox/latest/example/basic.html">http://testrun.org/tox/latest/example/basic.html</a>) explain, you do the first like:<br><br>deps =<br>    django15: Django>=1.5,<1.6<br>    django16: Django>=1.6,<1.7<br>    py33-mysql: PyMySQL     ; use if both py33 and mysql are in an env name<br>    py26,py27: urllib3      ; use if any of py26 or py27 are in an env name<br>    py{26,27}-sqlite: mock  ; mocking sqlite in python 2.x<br><br>and you do the second like:<br><br>deps = -r{toxinidir}/pip-requirements.txt<br>       -r{toxinidir}/pip-requirements-test.txt<br><br></div>but how do you combine these? If I try to define multiple deps, Tox gives me the error "duplicate name 'deps'"<br></div>