Test.name is defined as models.CharField(max_length=64, help_text='The test name')
But some test suites compose test names from too many parts and test name may exceed 64 characters.
In this case importruns fails with "DataError: value too long for type character varying(64)" exception.
And the final error message looks not very informative to users:
{"asctime": "2026-01-13 08:24:56,255", "levelname": "ERROR", "module": "importruns", "message": "value too long for type character varying(64)\n"}
Perhaps importruns error reporting should be reviewed also.
Test.name is defined as
models.CharField(max_length=64, help_text='The test name')But some test suites compose test names from too many parts and test name may exceed 64 characters.
In this case importruns fails with "DataError: value too long for type character varying(64)" exception.
And the final error message looks not very informative to users:
Perhaps importruns error reporting should be reviewed also.