-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use quotes around command to pass to docker container
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -63,8 +63,8 @@ install: | |
fi | ||
- | | ||
if [[ "$E2E_ROLE" = "author" ]]; then | ||
npm run wp-env run tests-cli wp user create author [email protected] --role=author --user_pass=authpass | ||
npm run wp-env run tests-cli wp post update 1 --post_author=2 | ||
npm run wp-env run tests-cli "wp user create author [email protected] --role=author --user_pass=authpass" | ||
npm run wp-env run tests-cli "wp post update 1 --post_author=2" | ||
fi | ||
jobs: | ||
|