-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow-test.config.yml
More file actions
66 lines (65 loc) · 1.51 KB
/
Copy pathflow-test.config.yml
File metadata and controls
66 lines (65 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
project_name: Flow Test Demo Project
test_directory: ./
globals:
# Arquivos .env para carregar automaticamente
# Carrega variáveis de ambiente antes da execução dos testes
# Arquivos são carregados em ordem, últimos sobrescrevem os primeiros
env_files:
- .env # Variáveis gerais
- .env.local # Sobrescritas locais (adicionar ao .gitignore)
# - .env.test # Específico para testes
# - .env.production # Produção (usar com cuidado)
variables:
api_base_url: http://localhost:8080
httpbin_url: http://localhost:8080
execution_mode: sequential
default_timeout: 30000
timeouts:
default: 60000
slow_tests: 120000
discovery:
patterns:
- '**/*.yaml'
- '**/*.json'
- '**/tests/**/*.yaml'
- '**/tests/**/*.json'
- '**/tests/*.yaml'
- '**/tests/*.json'
exclude:
- '**/temp/**'
- '**/node_modules/**'
- '**/flows/**'
- '**/results/**'
- '**/dist/**'
- '**/coverage/**'
- '**/web/**'
- '**/schema-catalog.json'
- '**/*.schema.json'
priorities:
levels:
- critical
- high
- medium
- low
required:
- critical
- high
fail_fast_on_required: false
execution:
mode: sequential
max_parallel: 3
timeout: 60000
continue_on_failure: true
retry_failed:
enabled: true
max_attempts: 2
delay_ms: 2000
reporting:
formats:
- json
- html
- qa
output_dir: ./results
aggregate: true
include_performance_metrics: true
include_variables_state: true