I'm aware of how to run a specific test class with django : python manage.py test MyApp.MyTestClass
.
What I'd like to do is the opposite : run every tests except one in particular.
To my mind, this would look like this : python manage.py test --ignore=MyApp.MyTestClass
Is there a simple way to do so ?
EDIT : An extra bonus would be to still be able to run the test manually (using the first command).