I really liked the plugin:
https://github.com/danggrianto/nose-testrail When I tried using it. It failed.
When I first ran the module I got below error.
self.result['status_id'] = 5
AttributeError: 'NoseTestRail' object has no attribute 'result'
Hence, then I added "result = {}" under the line "name = 'nose-testrail'" and then re-ran the nosetest but got below error.
File "/usr/local/lib/python2.7/dist-packages/nose_testrail/plugin.py", line 127, in get_test_case_id
test_method = getattr(test.test, test_name)
AttributeError: 'FunctionTestCase' object has no attribute 'test_1'
It seem to me that, the module is not able to get the case_id.
Can somebody please help me ?
Thank you.