Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions release/ray_release/test_automation/state_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,22 @@
TestState,
)

RAY_REPO = "ray-project/ray"
# We track test issues on anyscale's ray fork repo.
RAY_REPO = "anyscale/ray"
AWS_SECRET_GITHUB = "ray_ci_github_bot_token"
WEEKLY_RELEASE_BLOCKER_TAG = "weekly-release-blocker"

BUILDKITE_ORGANIZATION = "ray-project"
BUILDKITE_BISECT_PIPELINE = "release-tests-bisect"
AWS_SECRET_GITHUB = "ray_ci_github_token"
AWS_SECRET_BUILDKITE = "ray_ci_buildkite_token"
WEEKLY_RELEASE_BLOCKER_TAG = "weekly-release-blocker"
NO_TEAM = "none"
TEAM = [
"core",
"data",
"kuberay",
"ml",
"rllib",
"llm",
"serve",
]
Comment on lines 25 to 33
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better maintainability and readability, it's a good practice to keep lists of items like this sorted alphabetically. This makes it easier to find items and to add new ones in the correct place.

Suggested change
TEAM = [
"core",
"data",
"kuberay",
"ml",
"rllib",
"llm",
"serve",
]
TEAM = [
"core",
"data",
"kuberay",
"llm",
"ml",
"rllib",
"serve",
]

MAX_BISECT_PER_DAY = 10 # Max number of bisects to run per day for all tests
Expand Down