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
| ---
| test_name: regular_error
| strict: false
| marks:
| - usefixtures:
| - django_live_url
| stages:
| - id: signup
| type: ref
| - name: stage
| request:
| method: GET
| url: '{django_live_url}/trigger500'
| response:
| json:
| detail: test
| exc_info: !re_search 'Exception: test'
| status_code: 500
|
| ---
| test_name: error_without_exc_info
| strict: false
| marks:
| - usefixtures:
| - django_live_url
| - debug_modal_exceptions_false
| stages:
| - id: signup
| type: ref
| - name: stage
| request:
| method: GET
| url: '{django_live_url}/trigger500'
| response:
| json:
| detail: test
| exc_info: ~
| status_code: 500
|
|