Is it possible to run py.test with different versions of python without plugins (like xdist) or tox?
feedback
|
|
VirtualEnv is done to handle those case.
Using virtualenv, you will be able to create multiple environements, each one with one plugin you want. | |||
|
feedback
|
|
You can create a standalone pytest script with "py.test --genscript=mypytest" and then do
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. | |||
|
feedback
|