forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Nightly Test] Add a team column to each test config. (ray-project#21198
) 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.
- Loading branch information
Showing
19 changed files
with
183 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
- name: single_node | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: single_node.yaml | ||
|
@@ -13,10 +10,7 @@ | |
script: python single_node/test_single_node.py | ||
|
||
- name: object_store | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: object_store.yaml | ||
|
@@ -27,10 +21,7 @@ | |
script: python object_store/test_object_store.py | ||
|
||
- name: many_actors | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed.yaml | ||
|
@@ -41,10 +32,7 @@ | |
script: python distributed/test_many_actors.py | ||
|
||
- name: many_actors_smoke_test | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed_smoke_test.yaml | ||
|
@@ -55,10 +43,7 @@ | |
script: SMOKE_TEST=1 python distributed/test_many_actors.py | ||
|
||
- name: many_tasks | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed.yaml | ||
|
@@ -69,10 +54,7 @@ | |
script: python distributed/test_many_tasks.py --num-tasks=10000 | ||
|
||
- name: many_tasks_smoke_test | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed_smoke_test.yaml | ||
|
@@ -83,10 +65,7 @@ | |
script: python distributed/test_many_tasks.py --num-tasks=100 | ||
|
||
- name: many_pgs | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed.yaml | ||
|
@@ -97,10 +76,7 @@ | |
script: python distributed/test_many_pgs.py | ||
|
||
- name: many_pgs_smoke_test | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed_smoke_test.yaml | ||
|
@@ -112,10 +88,7 @@ | |
|
||
# NOTE: No smoke test since this shares a script with the many_tasks_smoke_test | ||
- name: many_nodes | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Alex Wu" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: many_nodes.yaml | ||
|
@@ -126,10 +99,7 @@ | |
script: python distributed/test_many_tasks.py --num-tasks=1000 | ||
|
||
- name: many_tasks_redis_ha | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Yi Cheng" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed.yaml | ||
|
@@ -146,10 +116,7 @@ | |
stable: false | ||
|
||
- name: many_actors_redis_ha | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Yi Cheng" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed.yaml | ||
|
@@ -166,10 +133,7 @@ | |
stable: false | ||
|
||
- name: many_nodes_redis_ha | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Yi Cheng" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: many_nodes.yaml | ||
|
@@ -186,10 +150,7 @@ | |
stable: false | ||
|
||
- name: many_pgs_redis_ha | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@Yi Cheng" | ||
|
||
team: core | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: distributed.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
- name: dask_xgboost_test | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@team_ml" | ||
team: ml | ||
cluster: | ||
app_config: dask_xgboost_app_config.yaml | ||
compute_template: compute_tpl.yaml | ||
|
@@ -20,9 +18,7 @@ | |
] | ||
|
||
- name: modin_xgboost_test | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@team_ml" | ||
team: ml | ||
cluster: | ||
app_config: modin_xgboost_app_config.yaml | ||
compute_template: compute_tpl.yaml | ||
|
@@ -41,10 +37,7 @@ | |
] | ||
|
||
- name: torch_tune_serve_test | ||
owner: | ||
mail: "[email protected]" | ||
slack: "@team_ml" | ||
|
||
team: ml | ||
cluster: | ||
app_config: torch_tune_serve_app_config.yaml | ||
compute_template: gpu_tpl.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
- name: horovod_test | ||
team: ml | ||
cluster: | ||
app_config: app_config_master.yaml | ||
compute_template: compute_tpl.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
release/long_running_distributed_tests/long_running_distributed.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
- name: pytorch_pbt_failure | ||
team: ml | ||
cluster: | ||
app_config: app_config.yaml | ||
compute_template: compute_tpl.yaml | ||
|
Oops, something went wrong.