I have added @unittest.skip
decorator for few of my test methods. It works as expected while running with python manage.py test --settings=PATH_TO_SETTING
But it does not work with python manage.py jenkins --settings=PATH_TO_SETTING
I read that I need to add JENKINS_TEST_RUNNER
to settings file but I am not aware of how to add that class.
How can I make it work with jenkins ?