From 4a10d5172eb2afa64e2b324a2f91f46283e03d9e Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 18 Aug 2023 08:58:45 +0200 Subject: [PATCH] Paparazzi 1.3.1 exports failure deltas from PROJECT_ROOT/out/failures/ to BUILD_DIR/paparazzi/failures/. --- .github/workflows/tests.yml | 4 ++-- docs/screenshot_testing.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9f1b2c6d75..02a34b4381 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -70,7 +70,7 @@ jobs: if: failure() with: name: failures - path: tests/uitests/out/failures/ + path: tests/uitests/build/paparazzi/failures/ retention-days: 5 - name: ✅ Upload kover report (disabled) @@ -83,7 +83,7 @@ jobs: with: name: tests-and-screenshot-tests-results path: | - **/out/failures/ + **/build/paparazzi/failures/ **/build/reports/tests/*UnitTest/ # https://github.com/codecov/codecov-action diff --git a/docs/screenshot_testing.md b/docs/screenshot_testing.md index 79ecad20dd..cd9af50cbc 100644 --- a/docs/screenshot_testing.md +++ b/docs/screenshot_testing.md @@ -58,7 +58,7 @@ Paparazzi will generate images in `:tests:uitests/src/test/snapshots`, which wil ./gradlew verifyPaparazziDebug ``` -In the case of failure, Paparazzi will generate images in `:tests:uitests/out/failure`. The images will show the expected and actual screenshots along with a delta of the two images. +In the case of failure, Paparazzi will generate images in `:tests:uitests/build/paparazzi/failures`. The images will show the expected and actual screenshots along with a delta of the two images. ## Contributing