Skip to content

Commit

Permalink
[Core] Deflake test_warning_many_actor_tasks_queued (ray-project#44282)
Browse files Browse the repository at this point in the history
Make the task run longer so that we can have expected number of pending tasks.


Signed-off-by: Jiajun Yao <[email protected]>
  • Loading branch information
jjyao authored Mar 26, 2024
1 parent 3f66536 commit 1ca2986
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .buildkite/macos/macos.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ steps:

- label: ":ray: core: :mac: small & client tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
tags:
- core_cpp
- python
- macos_wheels
Expand All @@ -39,7 +39,7 @@ steps:

- label: ":ray: core: :mac: medium a-j tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
tags:
- core_cpp
- python
- macos_wheels
Expand All @@ -51,7 +51,7 @@ steps:

- label: ":ray: core: :mac: medium k-z tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
tags:
- core_cpp
- python
- macos_wheels
Expand All @@ -63,7 +63,7 @@ steps:

- label: ":ray: core: :mac: large tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
tags:
- core_cpp
- python
- macos_wheels
Expand Down Expand Up @@ -102,7 +102,7 @@ steps:

- label: ":ray: core: :mac: small & large flaky tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
tags:
- core_cpp
- python
- macos_wheels
Expand All @@ -116,7 +116,7 @@ steps:

- label: ":ray: core: :mac: medium flaky tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
tags:
- core_cpp
- python
- macos_wheels
Expand Down
4 changes: 2 additions & 2 deletions python/ray/tests/test_failure.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,14 +496,14 @@ class SyncFoo:
def f(self):
import time

time.sleep(1)
time.sleep(1000)

@ray.remote(num_cpus=1)
class AsyncFoo:
async def f(self):
import asyncio

await asyncio.sleep(1)
await asyncio.sleep(1000)

Foo = SyncFoo if sync else AsyncFoo
a = Foo.remote()
Expand Down

0 comments on commit 1ca2986

Please sign in to comment.