pylero icon indicating copy to clipboard operation
pylero copied to clipboard

Python wrapper for the Polarion WSDL API

Results 26 pylero issues
Sort by recently updated
recently updated
newest added

code : if parse_type[0].startswith("ns"): cls._cls_suds_map[local_name]["cls"] = globals()[parse_type[1]] cls._cls_suds_map[local_name]["enum_id"] = getattr(cft, "enum_id", None) cls._cls_suds_map[local_name]["is_custom"] = True cls._cls_suds_map[local_name]["control"] = cls._wi_type Error : File "/home/emesika/.local/lib/python3.9/site-packages/pylero/work_item.py", line 1464, in get_custom_fields print(f"Global = {globals()[parse_type[1]]}") KeyError:...

calling a wrong WSDL method : Incorrect case usage detected for method: getProjectAtLocation in service: Project Found at pylero/src/pylero/project.py on line 93 Found at pylero/src/pylero/project.py on line 110 Incorrect case...

Running pylero with defined env variables POLARION_PASSWORD, POLARION_USERNAME, POLARION_REPO and POLARION_URL fails with nasty exception: ``` [0 13:07:48 pmatyas@pmatyas-fedora ~]$ pylero Traceback (most recent call last): ... During handling of...

code : if parse_type[0].startswith("ns"): cls._cls_suds_map[local_name]["cls"] = globals()[parse_type[1]] cls._cls_suds_map[local_name]["enum_id"] = getattr(cft, "enum_id", None) cls._cls_suds_map[local_name]["is_custom"] = True cls._cls_suds_map[local_name]["control"] = cls._wi_type Error : File "/home/emesika/.local/lib/python3.9/site-packages/pylero/work_item.py", line 1464, in get_custom_fields print(f"Global = {globals()[parse_type[1]]}") KeyError:...

Wrong code in get_defined_custom_field_type and get_defined_custom_field_types 1) get_defined_custom_field_type: self._uri, work_item_type_id, key should be : self.project_id, work_item_type_id, key) 2) get_defined_custom_field_types: self._uri, work_item_type_id should be: self.project_id, work_item_type_id

When trying to use the get_custom_field() function for getting a custom field value of a test run, the returned item is None. In test_run.py#get_custom_field there's the following assignment: `cf =...

When I get planned_in in a requirement, it can show a Plan object in the list, but all the attributions are empty. ``` Python 2.7.5 (default, Jun 11 2019, 14:33:56)...

Hi pylero team members, I want to update all my requirements "planned_in" field to "new_field_name". Does anyone know if there's a way to do that? I don't find a function...

If user use token to login and the user name is not provided in the config we could use the getUserFromToken function to get the user name with the given...