File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
# type: ignore
2
- import os
3
2
from itertools import chain
4
3
from math import ceil
5
4
from random import randint
18
17
from .utils import run_in_ddp
19
18
20
19
21
- @pytest .mark .skipif ( os . getenv ( "GITHUB_ACTIONS" ) == "true" , reason = "This test has tendency to fail on CI machines. " )
20
+ @pytest .mark .skip ( reason = "Dead locks may appear when running in CI" )
22
21
@pytest .mark .long
23
22
@pytest .mark .parametrize ("n_labels_sampler" , [2 , 5 ])
24
23
@pytest .mark .parametrize ("n_instances_sampler" , [2 , 5 ])
@@ -157,7 +156,7 @@ def check_patching_balance_batch_sampler(
157
156
assert len (set (outputs_from_epochs )) == len (outputs_from_epochs )
158
157
159
158
160
- @pytest .mark .skipif ( os . getenv ( "GITHUB_ACTIONS" ) == "true" , reason = "This test has tendency to fail on CI machines. " )
159
+ @pytest .mark .skip ( reason = "Dead locks may appear when running in CI" )
161
160
@pytest .mark .long
162
161
@pytest .mark .parametrize ("shuffle" , [True , False ])
163
162
@pytest .mark .parametrize ("drop_last" , [True , False ])
You can’t perform that action at this time.
0 commit comments