Is it possible to delete a build? #1179
Unanswered
easherma-truth
asked this question in
Support
Replies: 1 comment 2 replies
-
Additional workaround steps to not upload any snapshots for processing and eventually fail the build.
percy:
defer-uploads: true
npx percy exec:start
# your test suite command
# verify this command once :)
ps -ef | grep percy | grep -v grep |awk '{print $2}' | xargs kill -9 Note: Ideal behavior should be a deterministic test suite that will capture all snapshots. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Still learning this tool. I have some builds that I triggered locally, and didn't quite finish as expected. A first build got 203 of my pages, a build inbetween errors out and only got around 60. A subsequent build then got 203 pages successfully. However, the diff is incorrect because it compared against the build missing pages instead of the previous build.
All that to say, is there a way to remove builds from the list? and/or change the builds being compared and re-run the diffing after the initial snapshot?
Beta Was this translation helpful? Give feedback.
All reactions