Additional context
Why? Who is responsible to put 'source' field to test attributes?
If remove string formating to hardoded everything works fine.
Ex from self.code_ref = '{0}:{1}'.format(attributes['source'], name)
to self.code_ref = '{0}:{1}'.format('\my\path', name)
Describe the bug 'start_test' method in listener fails because the lack of 'source' field in test attributes.
Steps to Reproduce
tests -robot --tests ---folder1 -----suite1 ---folder2 -----suite2 -----suite3.....
Expected behavior Test results were pushed to RP
Actual behavior Listener failed to upload with error:
Package versions reportportal-client 5.0.10
robotframework-reportportal 5.1.2 robotframework 3.1.2 robotframework-pabot 1.8.0
Additional context Why? Who is responsible to put 'source' field to test attributes? If remove string formating to hardoded everything works fine. Ex from
self.code_ref = '{0}:{1}'.format(attributes['source'], name)
toself.code_ref = '{0}:{1}'.format('\my\path', name)