Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Try dev version of Drush 9 with the 9.x Behat Drush Endpoint. #168

Closed
wants to merge 13 commits into from
Closed
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
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs
defaults: &defaults
docker:
- image: quay.io/pantheon-public/build-tools-ci:1.x
- image: quay.io/pantheon-public/build-tools-ci:3.x
working_directory: ~/example_drops_8_composer
environment:
#=========================================================================
Expand Down Expand Up @@ -39,7 +39,7 @@ defaults: &defaults
version: 2
jobs:
# @todo: common initialization: 'composer install' for the site-under-test
build:
lint:
<<: *defaults
steps:
- checkout
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
name: run unit tests
command: composer -n unit-test

build_deploy_and_test:
functional:
<<: *defaults
steps:
- checkout
Expand Down Expand Up @@ -132,9 +132,9 @@ jobs:

workflows:
version: 2
build_and_test:
test:
jobs:
# Install dev dependencies and do simple tests (sniff, unit tests, etc.)
- build
- lint
# Build deploy and test on target platform
- build_deploy_and_test
- functional
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

# Ignore directories generated by Composer
/drush/contrib/
/drush/Commands
/drush/Commands/contrib/
/vendor/
/web/core/
/web/modules/contrib/
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"drupal/config_direct_save": "^1.0",
"drupal/config_installer": "^1.0",
"drupal/console": "^1",
"drush/drush": "8.x-dev",
"drupal/core": "^8",
"drupal/simple_block": "^1.0@beta",
"drush/drush": "~8",
"rvtraveller/qs-composer-installer": "^1.1",
"drush-ops/behat-drush-endpoint": "^0.0.5",
"drush-ops/behat-drush-endpoint": "dev-allow-8",
"pantheon-systems/quicksilver-pushback": "~1",
"rvtraveller/qs-composer-installer": "^1.1",
"webflo/drupal-core-strict": "^8"
},
"require-dev": {
Expand All @@ -40,7 +40,7 @@
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "alpha",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
Expand Down Expand Up @@ -77,7 +77,7 @@
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"build-env": {
"install-cms": [
Expand Down
Loading