-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunner.yml
More file actions
42 lines (39 loc) · 1.36 KB
/
runner.yml
File metadata and controls
42 lines (39 loc) · 1.36 KB
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
37
38
39
40
41
42
drupal:
root: "web"
base_url: ${env.DRUPAL_BASE_URL}
site:
profile: "oe_profile"
name: "Shaping Europe’s digital future"
generate_db_url: false
account:
name: ${env.DRUPAL_ACCOUNT_USERNAME}
password: ${env.DRUPAL_ACCOUNT_PASSWORD}
additional_settings: |
$databases['sparql_default']['default'] = [
'prefix' => '',
'host' => getenv('DRUPAL_SPARQL_HOSTNAME'),
'port' => getenv('DRUPAL_SPARQL_PORT'),
'namespace' => 'Drupal\\Driver\\Database\\sparql',
'driver' => 'sparql',];
behat:
tags: "~@wip"
selenium:
host: "http://selenium"
port: "4444"
browser: "chrome"
toolkit:
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" }