Is it possible to run py.test with different versions of python without plugins (like xdist) or tox?

link|improve this question

65% accept rate
tox isn't a plugin! – plaes Feb 2 at 18:02
feedback

2 Answers

VirtualEnv is done to handle those case.

virtualenv is a tool to create isolated Python environments.

Using virtualenv, you will be able to create multiple environements, each one with one plugin you want.

link|improve this answer
feedback

You can create a standalone pytest script with "py.test --genscript=mypytest" and then do

pythonXY mypytest 

to run tests with a particular python version. You do not need to install pytest for that particular python version as pytest is completely contained in the "mypytest" script.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.