-
Notifications
You must be signed in to change notification settings - Fork 6.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RLlib] Fix 2 broken CI tests. #47993
[RLlib] Fix 2 broken CI tests. #47993
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
@@ -95,9 +90,6 @@ def tearDownClass(cls) -> None: | |||
def test_save_appo_multi_agent(self): | |||
save_test("APPO", "torch", multi_agent=True) | |||
|
|||
def test_save_ppo(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new API stack: Already covered extensively (including extracting RLModule checkpoint and testing it) in checkpoints/
subfolder of the example scripts.
@@ -1343,13 +1343,6 @@ py_test( | |||
# | |||
# Tag: evaluation | |||
# -------------------------------------------------------------------- | |||
py_test( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved the important test therein into test_env_runner_failures
.
All other tests therein are redundant and are scenarios are already covered in test_env_runner_failures
!
…to fix_broken_ci_tests_10112024
Signed-off-by: mohitjain2504 <mohit.jain@dream11.com>
Fix 2 broken CI tests.
test_env_runner_failures
, which already covers all scenarios that were intest_envs_that_crash
)Why are these changes needed?
Related issue number
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.