Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ jobs:
mkdir reports

python -m pytest distributed \
-m "not avoid_ci and ${{ matrix.partition }}" --runslow \
-m "${{ matrix.partition }}" --runslow \
--leaks=fds,processes,threads \
--junitxml reports/pytest.xml -o junit_suite_name=$TEST_ID \
--cov=distributed --cov-report=xml \
Expand Down
2 changes: 1 addition & 1 deletion distributed/deploy/tests/test_old_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
)


@pytest.mark.avoid_ci
@pytest.mark.skip
def test_cluster(loop):
with SSHCluster(
scheduler_addr="127.0.0.1",
Expand Down
4 changes: 2 additions & 2 deletions distributed/deploy/tests/test_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async def test_keywords():
assert all(v["nthreads"] == 2 for v in d.values())


@pytest.mark.avoid_ci
@pytest.mark.xfail(reason="Very flaky (leaks resources)", strict=False)
def test_defer_to_old(loop):
with pytest.warns(
UserWarning,
Expand All @@ -124,7 +124,7 @@ def test_defer_to_old(loop):
assert isinstance(c, OldSSHCluster)


@pytest.mark.avoid_ci
@pytest.mark.skip
def test_old_ssh_with_local_dir(loop):
from distributed.deploy.old_ssh import SSHCluster as OldSSHCluster

Expand Down
2 changes: 1 addition & 1 deletion distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7950,7 +7950,7 @@ async def test_security_loader_import_failed(self):
pass


@pytest.mark.avoid_ci(reason="This is slow and probably not worth the cost")
@pytest.mark.skip(reason="This is very slow and probably not worth the cost")
@pytest.mark.slow
@gen_cluster(client=True)
async def test_benchmark_hardware(c, s, a, b):
Expand Down
1 change: 0 additions & 1 deletion distributed/tests/test_stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ def vsum(*args):


@pytest.mark.skip(reason="times out")
@pytest.mark.avoid_ci
@pytest.mark.slow
@gen_cluster(
client=True,
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ markers = [
"ci1: marks tests as belonging to 1 out of 2 partitions to run on CI ('-m \"not ci1\"' for second partition)",
"memray: marks tests that require memray to run (available on Linux/MacOS only)",
"slow: marks tests as slow (deselected by default; select with '--runslow')",
"avoid_ci: marks tests as flaky or broken on CI on all OSs",
"ipython: marks tests as exercising IPython",
"gpu: marks tests we want to run on GPUs",
"leaking: ignore leaked resources", # see pytest_resourceleaks.py for usage
Expand Down
Loading