You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Добавить любой набор, в моем случае только автоматизированные ТК
Выполнить
configuration = create_configuration()
with testit_api_client.ApiClient(configuration) as api_client:
api_instance = test_points_api.TestPointsApi(api_client)
api_v2_test_points_search_post_request = ApiV2TestPointsSearchPostRequest(test_plan_ids=[test_plan_id])
try:
# Search for test points
api_response = api_instance.api_v2_test_points_search_post(api_v2_test_points_search_post_request=api_v2_test_points_search_post_request)
print(api_response)
except testit_api_client.ApiException as e:
print("Exception when calling TestPointsApi->api_v2_test_points_search_post: %s\n" % e)
ФР: Ошибка: testit_api_client.exceptions.ApiTypeError: Invalid type for variable 'last_test_result'. Required value type is TestPointShortGetModelLastTestResult and passed type was NoneType at ['received_data'][0]['last_test_result']
Если вызвать тот же самый кусок кода для тест плана, в котором проставлены результаты выполнения каждого ТК, проходит успешно.
Так же через swagger работают оба случая.
Предполагаю, что работает некорректно, так как поле lastTestResult может быть равно null
The text was updated successfully, but these errors were encountered:
Привет
ТК
ФР: Ошибка:
testit_api_client.exceptions.ApiTypeError: Invalid type for variable 'last_test_result'. Required value type is TestPointShortGetModelLastTestResult and passed type was NoneType at ['received_data'][0]['last_test_result']
Если вызвать тот же самый кусок кода для тест плана, в котором проставлены результаты выполнения каждого ТК, проходит успешно.
Так же через swagger работают оба случая.
Предполагаю, что работает некорректно, так как поле lastTestResult может быть равно null
The text was updated successfully, but these errors were encountered: