Skip to content

Commit

Permalink
remove dead locking tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksei Shabanov committed Feb 2, 2025
1 parent 8fae827 commit 8300607
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_oml/test_ddp/test_loader_patcher.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# type: ignore
import os
from itertools import chain
from math import ceil
from random import randint
Expand All @@ -18,7 +17,7 @@
from .utils import run_in_ddp


@pytest.mark.skipif(os.getenv("GITHUB_ACTIONS") == "true", reason="This test has tendency to fail on CI machines.")
@pytest.mark.skip(reason="Dead locks may appear when running in CI")
@pytest.mark.long
@pytest.mark.parametrize("n_labels_sampler", [2, 5])
@pytest.mark.parametrize("n_instances_sampler", [2, 5])
Expand Down Expand Up @@ -157,7 +156,7 @@ def check_patching_balance_batch_sampler(
assert len(set(outputs_from_epochs)) == len(outputs_from_epochs)


@pytest.mark.skipif(os.getenv("GITHUB_ACTIONS") == "true", reason="This test has tendency to fail on CI machines.")
@pytest.mark.skip(reason="Dead locks may appear when running in CI")
@pytest.mark.long
@pytest.mark.parametrize("shuffle", [True, False])
@pytest.mark.parametrize("drop_last", [True, False])
Expand Down

0 comments on commit 8300607

Please sign in to comment.