Skip to content

Commit c35a903

Browse files
committed
try to find the guilty one mod 12 = 0 and then mod 12 = 10
Signed-off-by: dafnapension <[email protected]>
1 parent f6d3fba commit c35a903

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/catalog_preparation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 30
1818
env:
1919
OS: ubuntu-latest
20-
UNITXT_DEFAULT_VERBOSITY: error
20+
UNITXT_DEFAULT_VERBOSITY: info
2121
DATASETS_VERBOSITY: error
2222
HF_HUB_VERBOSITY: error
2323
HF_DATASETS_DISABLE_PROGRESS_BARS: "True"

tests/catalog/test_preparation.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
file for i, file in enumerate(all_preparation_files) if i % 12 == 0
3838
]
3939

40+
all_preparation_files = [
41+
file for i, file in enumerate(all_preparation_files) if i % 12 == 10
42+
]
43+
4044
all_preparation_files = [
4145
file for i, file in enumerate(all_preparation_files) if i % num_par == modulo
4246
]

0 commit comments

Comments
 (0)