forked from Zen-CI/drupal-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.testing.zenci.yml
40 lines (40 loc) · 1.24 KB
/
.testing.zenci.yml
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
test:
REPLACE_WITH_TAG:
branch:
box: REPLACE_WITH_BOX_NAME
dir: '{home}/github'
env_vars:
docroot: '{home}/www'
domain: 'localhost'
database_name: 'test'
database_user: 'test'
database_pass: ''
account_user: REPLACE_WITH_ADMIN_USER
account_mail: REPLACE_WITH_ADMIN_EMAIL
account_pass: REPLACE_WITH_ADMIN_PASSWORD
site_mail: REPLACE_WITH_SITE_EMAIL
site_name: REPLACE_WITH_SITE_NAME
tests: '--all'
scripts:
init: '{deploy_dir}/scripts/test_deploy_init.sh'
tests:
- '{deploy_dir}/scripts/drupal_tests.php'
pull_request:
box: REPLACE_WITH_BOX_NAME
dir: '{home}/github'
env_vars:
docroot: '{home}/www'
domain: 'localhost'
database_name: 'test'
database_user: 'test'
database_pass: ''
account_user: REPLACE_WITH_ADMIN_USER
account_mail: REPLACE_WITH_ADMIN_EMAIL
account_pass: REPLACE_WITH_ADMIN_PASSWORD
site_mail: REPLACE_WITH_SITE_EMAIL
site_name: REPLACE_WITH_SITE_NAME
tests: '--all'
scripts:
init: '{deploy_dir}/scripts/test_deploy_init.sh'
tests:
- '{deploy_dir}/scripts/drupal_tests.php'