-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtests.yaml
49 lines (48 loc) · 1.63 KB
/
tests.yaml
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
43
44
45
46
47
48
49
test-cases:
- name: Default Build Test # Deploy using all default options
create:
timeout: 45 # Deployment should complete in under 45 minutes
resource_tests: # Tests to run on the resources themselves
ssh_private_key: { get_output: private_key } # Fetch from output-list of stack
ssh_key_file: tmp/private_key # File to write with ssh_private_key
tests:
- django_server:
fabric:
# Fabric environment settings to use while running envassert script
# http://docs.fabfile.org/en/latest/usage/env.html
env:
user: root
key_filename: tmp/private_key
hosts: { get_output: server_ips } # Fetch from output-list of stack
tasks:
- artifacts
- check
abort_on_prompts: True
connection_attempts: 3
disable_known_hosts: True
use_ssh_config: True
fabfile: test/fabric/django.py # Path to envassert test
- name: Standard Instance, non-default user
create:
parameters:
flavor: 2GB Standard Instance
django_admin_user: racker
timeout: 45
resource_tests:
ssh_private_key: { get_output: private_key }
ssh_key_file: tmp/private_key
tests:
- django_server:
fabric:
env:
user: root
key_filename: tmp/private_key
hosts: { get_output: server_ips }
tasks:
- artifacts
- check
abort_on_prompts: True
connection_attempts: 3
disable_known_hosts: True
use_ssh_config: True
fabfile: test/fabric/django.py