[Answer]-Django testrunner not running my tests

1👍

The name of the test methods need to start with test_. This allows the class to have both test methods and helper methods that you may write as well.

Hence you should rename your method to test_parsesSurveyPassedInAsCsvAndReturnsXmlRepresentation (and perhaps shorten the name too).

Leave a comment