My Python version is 2.6.
I would like to execute the test setUp method only once since I do things there which are needed for all tests.
My idea was to crea
You can use setUpClass to define methods that only run once per testsuite.