mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 16:42:50 +02:00
Allow more image names to be used as Nitpick test reference images
This commit is contained in:
parent
1011880698
commit
2dbf3de58a
1 changed files with 5 additions and 3 deletions
|
@ -323,9 +323,11 @@ void TestCreator::startTestsEvaluation(
|
|||
|
||||
QString expectedImagePartialSourceDirectory = getExpectedImagePartialSourceDirectory(currentFilename);
|
||||
|
||||
// Images are stored on GitHub as ExpectedImage_ddddd.png
|
||||
// Extract the digits at the end of the filename (excluding the file extension)
|
||||
QString expectedImageFilenameTail = currentFilename.left(currentFilename.length() - 4).right(NUM_DIGITS);
|
||||
// Images are stored on GitHub as ExpectedImage_ddddd.png or ExpectedImage_some_metadata_ddddd.png
|
||||
// Extract the part of the filename after "ExpectedImage_" and excluding the file extension
|
||||
QString expectedImageFilenameTail = currentFilename.left(currentFilename.lastIndexOf("."));
|
||||
int expectedImageStart = expectedImageFilenameTail.lastIndexOf(".") + 1;
|
||||
expectedImageFilenameTail.remove(0, expectedImageStart);
|
||||
QString expectedImageStoredFilename = EXPECTED_IMAGE_PREFIX + expectedImageFilenameTail + ".png";
|
||||
|
||||
QString imageURLString("https://raw.githubusercontent.com/" + user + "/" + GIT_HUB_REPOSITORY + "/" + branch + "/" +
|
||||
|
|
Loading…
Reference in a new issue