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 7eaf2bc commit c044b2aCopy full SHA for c044b2a
.github/workflows/parallel_dir.yml
@@ -44,7 +44,8 @@ jobs:
44
for line in lines:
45
parts = line.strip().partition("::")
46
test_dirs.add(str(Path(parts[0]).parent))
47
- test_dirs = { "test_dirs": sorted(list(test_dirs)) }
+ # test_dirs = { "test_dirs": sorted(list(test_dirs)) }
48
+ test_dirs = sorted(list(test_dirs))
49
print(test_dirs)
50
with open(environ["GITHUB_OUTPUT"], "a", encoding="utf-8") as f:
51
print(f"TEST_DIRS={test_dirs}", file=f)
0 commit comments