I am trying to run py.test on a given module object dynamically.
mod = __import__('company.foo.somemod')
py.test.run(mod)
A quick glance in the py.test source doesn't seem like a trivial thing.
IPython introspection did not give me any clue either.
Is there a way to do this at all? I did try
py.test.cmdline.main(['...']), but that accepts only file path, not the
Python module object itself.
-srid
_______________________________________________
py-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/py-dev