Skip to content

Commit 17c91aa

Browse files
committed
* ignore dj configs when checking example validation
1 parent c10dd93 commit 17c91aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/common/config_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ def test_all_examples_are_valid(self):
4141
for example_name in os.listdir(example_dir):
4242
for filename in os.listdir(os.path.join(example_dir, example_name)):
4343
if filename.endswith(".yaml") and not (
44-
filename.startswith("train_") or filename.startswith("verl_")
44+
filename.startswith("train_")
45+
or filename.startswith("verl_")
46+
or filename.startswith("dj_")
4547
):
4648
print(f"Checking config: {filename}")
4749
config_path = os.path.join(example_dir, example_name, filename)

0 commit comments

Comments
 (0)