Trying to call create_test_result with the following code will throw an error that the start and end times have to be in utc. The python API should allow me to provide local time and internally convert to utc.
test_result = TestResult(
name="name",
start_date_time=datetime.now(),
end_date_time=datetime.now(),
outcome=Outcome.PASSED,
)
AB#3746793
Trying to call
create_test_resultwith the following code will throw an error that the start and end times have to be in utc. The python API should allow me to provide local time and internally convert to utc.AB#3746793