Skip to content

Commit

Permalink
[BUGS-6778] Actually we do not need phpunit. (#484)
Browse files Browse the repository at this point in the history
* Actually we do not need phpunit.

* Update ssh key.
  • Loading branch information
kporras07 authored Sep 18, 2023
1 parent f67ba8d commit 9593d6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 9593d6b

Please sign in to comment.