mirror of
https://github.com/vale981/ray
synced 2025-03-09 04:46:38 -04:00

Please review **e2e.py and test_suite belonging to your team**! This is the first part of https://docs.google.com/document/d/16IrwerYi2oJugnRf5hvzukgpJ6FAVEpB6stH_CiNMjY/edit# This PR adds a team name to each test suite. If the name is not specified, it will be reported as unspecified. If you are running a local test, and if the new test suite doesn't have a team name specified, it will raise an exception (in this way, we can avoid missing team names in the future). Note that we will aggregate all of test config into a single file, nightly_test.yaml.
57 lines
No EOL
1.1 KiB
YAML
57 lines
No EOL
1.1 KiB
YAML
- name: single_deployment_1k_noop_replica
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: compute_tpl_8_cpu.yaml
|
|
|
|
run:
|
|
timeout: 7200
|
|
long_running: False
|
|
script: python workloads/single_deployment_1k_noop_replica.py
|
|
|
|
smoke_test:
|
|
timeout: 600
|
|
|
|
- name: multi_deployment_1k_noop_replica
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: compute_tpl_8_cpu.yaml
|
|
|
|
run:
|
|
timeout: 7200
|
|
long_running: False
|
|
script: python workloads/multi_deployment_1k_noop_replica.py
|
|
|
|
smoke_test:
|
|
timeout: 600
|
|
|
|
- name: serve_micro_benchmark
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
# 16 CPUS
|
|
compute_template: compute_tpl_single_node.yaml
|
|
|
|
run:
|
|
timeout: 7200
|
|
long_running: False
|
|
script: python workloads/serve_micro_benchmark.py
|
|
|
|
smoke_test:
|
|
timeout: 600
|
|
|
|
- name: serve_cluster_fault_tolerance
|
|
team: serve
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
# 16 CPUS
|
|
compute_template: compute_tpl_single_node.yaml
|
|
|
|
run:
|
|
timeout: 7200
|
|
long_running: False
|
|
script: python workloads/serve_cluster_fault_tolerance.py
|
|
|
|
smoke_test:
|
|
timeout: 600 |