Skip to content
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] skip highly flaky tests #17010

Merged
merged 1 commit into from
Jul 12, 2021
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
59 changes: 31 additions & 28 deletions rllib/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -157,19 +157,20 @@ py_test(
)

# CQL
py_test(
name = "run_regression_tests_pendulum_cql_tf",
main = "tests/run_regression_tests.py",
tags = ["learning_tests_tf", "learning_tests_pendulum", "flaky"],
size = "large",
srcs = ["tests/run_regression_tests.py"],
# Include the zipped json data file as well.
data = [
"tuned_examples/cql/pendulum-cql.yaml",
"tests/data/pendulum/enormous.zip",
],
args = ["--yaml-dir=tuned_examples/cql"]
)
# Skipping due to high flakiness.
#py_test(
# name = "run_regression_tests_pendulum_cql_tf",
# main = "tests/run_regression_tests.py",
# tags = ["learning_tests_tf", "learning_tests_pendulum", "flaky"],
# size = "large",
# srcs = ["tests/run_regression_tests.py"],
# # Include the zipped json data file as well.
# data = [
# "tuned_examples/cql/pendulum-cql.yaml",
# "tests/data/pendulum/enormous.zip",
# ],
# args = ["--yaml-dir=tuned_examples/cql"]
#)

py_test(
name = "run_regression_tests_pendulum_cql_torch",
Expand Down Expand Up @@ -504,15 +505,16 @@ py_test(
args = ["--yaml-dir=tuned_examples/sac"]
)

py_test(
name = "run_regression_tests_pendulum_sac_torch",
main = "tests/run_regression_tests.py",
tags = ["learning_tests_torch", "learning_tests_pendulum", "flaky"],
size = "large",
srcs = ["tests/run_regression_tests.py"],
data = ["tuned_examples/sac/pendulum-sac.yaml"],
args = ["--yaml-dir=tuned_examples/sac", "--framework=torch"]
)
# Skipping due to high flakiness.
#py_test(
# name = "run_regression_tests_pendulum_sac_torch",
# main = "tests/run_regression_tests.py",
# tags = ["learning_tests_torch", "learning_tests_pendulum", "flaky"],
# size = "large",
# srcs = ["tests/run_regression_tests.py"],
# data = ["tuned_examples/sac/pendulum-sac.yaml"],
# args = ["--yaml-dir=tuned_examples/sac", "--framework=torch"]
#)

py_test(
name = "run_regression_tests_transformed_actions_pendulum_sac_tf",
Expand Down Expand Up @@ -1377,12 +1379,13 @@ py_test(
# Tag: utils
# --------------------------------------------------------------------

py_test(
name = "test_curiosity",
tags = ["utils", "flaky"],
size = "large",
srcs = ["utils/exploration/tests/test_curiosity.py"]
)
# Skipping due to high flakiness.
#py_test(
# name = "test_curiosity",
# tags = ["utils", "flaky"],
# size = "large",
# srcs = ["utils/exploration/tests/test_curiosity.py"]
#)

py_test(
name = "test_explorations",
Expand Down