-
Notifications
You must be signed in to change notification settings - Fork 52
Add flag to ignore previous approvals on build:approve command #1963
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
danieldelacruz01
wants to merge
11
commits into
percy:master
Choose a base branch
from
danieldelacruz01:ignore-previous-approvals-in-build-approve
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a105c37
add flag to ignore previous approvals on build:approve command
danieldelacruz01 b5f6ee3
update readme for build:approve
danieldelacruz01 73b7c45
Merge remote-tracking branch 'upstream/master' into ignore-previous-a…
danieldelacruz01 c7bb83b
fix build:approve default flag override + lint
danieldelacruz01 92b8c1e
fix build:approve branch coverage
danieldelacruz01 3cd4624
fix build:approve branch coverage
danieldelacruz01 a532dd2
try wrapping error condition in a single if statement
danieldelacruz01 56831f1
add build:approve example and regenerate readme
danieldelacruz01 d8a156a
add case insensitivity per PR feedback
danieldelacruz01 27ddae4
regenerate cli-build readme
danieldelacruz01 0bad8b2
Merge remote-tracking branch 'upstream/master' into ignore-previous-a…
danieldelacruz01 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -309,4 +309,36 @@ describe('percy build:approve', () => { | |
| '[percy] Approved by: temp-username ([email protected])' | ||
| ]); | ||
| }); | ||
|
|
||
| it('logs an error when build approval fails with 409 Conflict', async () => { | ||
| process.env.PERCY_FORCE_PKG_VALUE = JSON.stringify({ name: '@percy/client', version: '1.0.0' }); | ||
| process.env.BROWSERSTACK_USERNAME = 'env-username'; | ||
| process.env.BROWSERSTACK_ACCESS_KEY = 'env-access-key'; | ||
|
|
||
| api.reply('/reviews', (req) => [409, { errors: [{ detail: 'approve action is already performed on this build' }] }]); | ||
|
|
||
| await expectAsync(approve(['123'])).toBeRejected(); | ||
|
|
||
| expect(logger.stderr).toEqual([ | ||
| '[percy] Failed to approve build 123', | ||
| '[percy] Error: approve action is already performed on this build', | ||
| '[percy] Error: Failed to approve the build' | ||
| ]); | ||
| }); | ||
|
|
||
| it('does not error when build is previously approved and --pass-if-previously-approved flag is used', async () => { | ||
| process.env.PERCY_FORCE_PKG_VALUE = JSON.stringify({ name: '@percy/client', version: '1.0.0' }); | ||
| process.env.BROWSERSTACK_USERNAME = 'env-username'; | ||
| process.env.BROWSERSTACK_ACCESS_KEY = 'env-access-key'; | ||
|
|
||
| api.reply('/reviews', (req) => [409, { errors: [{ detail: 'approve action is already performed on this build' }] }]); | ||
|
|
||
| await expectAsync(approve(['123', '--pass-if-previously-approved'])).toBeResolved(); | ||
|
|
||
| expect(logger.stderr).toEqual([]); | ||
| expect(logger.stdout).toEqual([ | ||
| '[percy] Approving build 123...', | ||
| '[percy] Build 123 is already approved: skipping approval' | ||
| ]); | ||
| }); | ||
| }); | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.