We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10dd93 commit 17c91aaCopy full SHA for 17c91aa
tests/common/config_test.py
@@ -41,7 +41,9 @@ def test_all_examples_are_valid(self):
41
for example_name in os.listdir(example_dir):
42
for filename in os.listdir(os.path.join(example_dir, example_name)):
43
if filename.endswith(".yaml") and not (
44
- filename.startswith("train_") or filename.startswith("verl_")
+ filename.startswith("train_")
45
+ or filename.startswith("verl_")
46
+ or filename.startswith("dj_")
47
):
48
print(f"Checking config: {filename}")
49
config_path = os.path.join(example_dir, example_name, filename)
0 commit comments