forked from revagomes/drupal-pece
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner.yml.dist
36 lines (36 loc) · 1.29 KB
/
runner.yml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
drupal:
root: web
base_url: '${env.DRUPAL_BASE_URL}'
site:
profile: pece
name: pece2
generate_db_url: false
default_theme: pece_theme
mail: [email protected]
account:
name: '${env.DRUPAL_ACCOUNT_USERNAME}'
password: '${env.DRUPAL_ACCOUNT_PASSWORD}'
mail: [email protected]
behat:
tags: ~@wip
selenium:
host: 'http://selenium'
port: '4444'
browser: chrome
toolkit:
project_id: pece2
build:
dist:
commands:
- { task: copy, from: lib/modules, to: 'dist/${drupal.root}/modules/custom' }
- { task: copy, from: lib/themes, to: 'dist/${drupal.root}/themes/custom' }
- { task: copy, from: lib/profiles, to: 'dist/${drupal.root}/profiles/custom' }
dev:
commands:
- { task: "symlink", from: "../../lib/modules", to: "${drupal.root}/modules/custom" }
- { task: "symlink", from: "../../lib/themes", to: "${drupal.root}/themes/custom" }
- { task: "symlink", from: "../../lib/profiles", to: "${drupal.root}/profiles/custom" }
- { task: run, command: 'drupal:setup-test' }
commands:
drupal:setup-test:
- { task: "process", source: "behat.yml.dist", destination: "behat.yml" }