Skip to content
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

[BUGS-6778] Actually we do not need phpunit. #484

Merged
merged 2 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
command: echo "StrictHostKeyChecking no" >> "$HOME/.ssh/config"
- add_ssh_keys:
fingerprints:
- "74:82:8b:ea:78:ad:23:23:68:70:b6:07:5c:2b:4b:e0"
- "cb:92:c4:59:07:7f:6c:3d:1b:92:e7:6c:8a:da:3f:b2"
- run:
name: Test D9 with GitHub
command: ./.circleci/test-github-repo.sh "d9"
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
command: echo "StrictHostKeyChecking no" >> "$HOME/.ssh/config"
- add_ssh_keys:
fingerprints:
- "74:82:8b:ea:78:ad:23:23:68:70:b6:07:5c:2b:4b:e0"
- "cb:92:c4:59:07:7f:6c:3d:1b:92:e7:6c:8a:da:3f:b2"
- run:
name: Test WordPress with GitHub
command: ./.circleci/test-github-repo.sh "pantheon-systems/example-wordpress-composer:dev-master" --use-ssh
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ProjectCreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public function createProject(

// If folder does not exists, assume we need to install composer deps.
// Require basic testing general packages.
exec("composer --working-dir=$siteDir require --no-update --dev dealerdirect/phpcodesniffer-composer-installer squizlabs/php_codesniffer phpunit/phpunit");
exec("composer --working-dir=$siteDir require --no-update --dev dealerdirect/phpcodesniffer-composer-installer squizlabs/php_codesniffer");
exec("composer --working-dir=$siteDir config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true");
// Require behat related general packages.
exec("composer --working-dir=$siteDir require --no-update --dev behat/behat behat/mink dmore/behat-chrome-extension genesis/behat-fail-aid jcalderonzumba/mink-phantomjs-driver mikey179/vfsstream");
Expand Down
Loading