I am looking for an optimal naming convention for python test files that ease the usage of different test frameworks (unittest, note, pyunit, ...) and also that is friendly with test auto-discovery for these tools.
I just want a clear set of recomandation that would require minimal configuration for tools.
- Tests directory name?
testortests? - Where to put the tests? in module/testdir or module/../testdir
- Test filenames using underscore or dash? test_0.py or test-0.py
I know, I have too much time :)