mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[rllib] skip highly flaky tests (#17010)
This commit is contained in:
parent
bc33dc7e96
commit
df3dd81348
1 changed files with 31 additions and 28 deletions
59
rllib/BUILD
59
rllib/BUILD
|
@ -157,19 +157,20 @@ py_test(
|
||||||
)
|
)
|
||||||
|
|
||||||
# CQL
|
# CQL
|
||||||
py_test(
|
# Skipping due to high flakiness.
|
||||||
name = "run_regression_tests_pendulum_cql_tf",
|
#py_test(
|
||||||
main = "tests/run_regression_tests.py",
|
# name = "run_regression_tests_pendulum_cql_tf",
|
||||||
tags = ["learning_tests_tf", "learning_tests_pendulum", "flaky"],
|
# main = "tests/run_regression_tests.py",
|
||||||
size = "large",
|
# tags = ["learning_tests_tf", "learning_tests_pendulum", "flaky"],
|
||||||
srcs = ["tests/run_regression_tests.py"],
|
# size = "large",
|
||||||
# Include the zipped json data file as well.
|
# srcs = ["tests/run_regression_tests.py"],
|
||||||
data = [
|
# # Include the zipped json data file as well.
|
||||||
"tuned_examples/cql/pendulum-cql.yaml",
|
# data = [
|
||||||
"tests/data/pendulum/enormous.zip",
|
# "tuned_examples/cql/pendulum-cql.yaml",
|
||||||
],
|
# "tests/data/pendulum/enormous.zip",
|
||||||
args = ["--yaml-dir=tuned_examples/cql"]
|
# ],
|
||||||
)
|
# args = ["--yaml-dir=tuned_examples/cql"]
|
||||||
|
#)
|
||||||
|
|
||||||
py_test(
|
py_test(
|
||||||
name = "run_regression_tests_pendulum_cql_torch",
|
name = "run_regression_tests_pendulum_cql_torch",
|
||||||
|
@ -504,15 +505,16 @@ py_test(
|
||||||
args = ["--yaml-dir=tuned_examples/sac"]
|
args = ["--yaml-dir=tuned_examples/sac"]
|
||||||
)
|
)
|
||||||
|
|
||||||
py_test(
|
# Skipping due to high flakiness.
|
||||||
name = "run_regression_tests_pendulum_sac_torch",
|
#py_test(
|
||||||
main = "tests/run_regression_tests.py",
|
# name = "run_regression_tests_pendulum_sac_torch",
|
||||||
tags = ["learning_tests_torch", "learning_tests_pendulum", "flaky"],
|
# main = "tests/run_regression_tests.py",
|
||||||
size = "large",
|
# tags = ["learning_tests_torch", "learning_tests_pendulum", "flaky"],
|
||||||
srcs = ["tests/run_regression_tests.py"],
|
# size = "large",
|
||||||
data = ["tuned_examples/sac/pendulum-sac.yaml"],
|
# srcs = ["tests/run_regression_tests.py"],
|
||||||
args = ["--yaml-dir=tuned_examples/sac", "--framework=torch"]
|
# data = ["tuned_examples/sac/pendulum-sac.yaml"],
|
||||||
)
|
# args = ["--yaml-dir=tuned_examples/sac", "--framework=torch"]
|
||||||
|
#)
|
||||||
|
|
||||||
py_test(
|
py_test(
|
||||||
name = "run_regression_tests_transformed_actions_pendulum_sac_tf",
|
name = "run_regression_tests_transformed_actions_pendulum_sac_tf",
|
||||||
|
@ -1377,12 +1379,13 @@ py_test(
|
||||||
# Tag: utils
|
# Tag: utils
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
|
|
||||||
py_test(
|
# Skipping due to high flakiness.
|
||||||
name = "test_curiosity",
|
#py_test(
|
||||||
tags = ["utils", "flaky"],
|
# name = "test_curiosity",
|
||||||
size = "large",
|
# tags = ["utils", "flaky"],
|
||||||
srcs = ["utils/exploration/tests/test_curiosity.py"]
|
# size = "large",
|
||||||
)
|
# srcs = ["utils/exploration/tests/test_curiosity.py"]
|
||||||
|
#)
|
||||||
|
|
||||||
py_test(
|
py_test(
|
||||||
name = "test_explorations",
|
name = "test_explorations",
|
||||||
|
|
Loading…
Add table
Reference in a new issue