vote up 1 vote down star
1

I'm trying to hack my through an open source python project (namely: jinja2),

When I say "I'm hacking my way through", I mean I don't really know what I'm doing, so I want to run unittests whenever I change something to make sure I'm not breaking something major!

There's a package full of unit tests (if you want to have a look, it's here). Basically it's a folder full of python files with the name "test_xxxxxx.py"

How do I run all of these tests in one command?

flag

3 Answers

vote up 1 vote down check

It looks like Jinja uses the py.test testing tool. If so you can run all tests by just running py.test from within the tests subdirectory.

link|flag
awesome! thanks! – hasen j Mar 20 at 5:52
vote up 0 vote down

You could also take a look at nose too. It's supposed to be a py.test evolution.

link|flag
nose didn't work well with these tests, but thanks for the link non-the-less – hasen j Mar 20 at 21:22
No problem, I'm glad to help. You can also take a look at Python Testing Tools Taxonomy ( pycheesecake.org/wiki/PythonTestingToolsTaxonomy/… ) – mpeterson Mar 20 at 23:33
vote up 0 vote down

Try to 'walk' through the directories and import all from files like "test_xxxxxx.py", then call unittest.main()

link|flag
I know I can essentially write a method that walks the tree and runs the test each after the other. but py.test in the accepted answer already does that and more. – hasen j Mar 20 at 9:51

Your Answer

Get an OpenID
or

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