Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove pytest.skip after cgroups / memory_limit went live on Coiled prod #256

Merged
merged 4 commits into from
Dec 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions tests/stability/test_deadlock.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
import uuid

import dask
import distributed
import pytest
from coiled import Cluster
from distributed import Client, wait
from packaging.version import Version


# @pytest.mark.skipif(
# Version(distributed.__version__) < Version("2022.4.2"),
# reason="https://github.com/dask/distributed/issues/6110",
# )
@pytest.mark.skip(
reason="Skip until https://github.com/dask/distributed/pull/6637 is merged"
@pytest.mark.skipif(
Version(distributed.__version__) < Version("2022.4.2"),
reason="https://github.com/dask/distributed/issues/6110",
)
def test_repeated_merge_spill(
upload_cluster_dump,
Expand Down
3 changes: 0 additions & 3 deletions tests/stability/test_spill.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ def test_spilling(spill_client, keep_around):
wait(fut)


@pytest.mark.skip(
reason="Skip until https://github.com/coiled/feedback/issues/185 is resolved."
)
@pytest.mark.stability
def test_tensordot_stress(spill_client):
a = da.random.random((48 * 1024, 48 * 1024)) # 18 GiB
Expand Down