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
4 changes: 0 additions & 4 deletions services/storage/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1018,12 +1018,8 @@ async def with_storage_celery_worker_controller(
perform_ping_check=False,
queues="default,cpu_bound",
) as worker:
worker_init.send(sender=worker)

yield worker

worker_shutdown.send(sender=worker)


@pytest.fixture
def with_storage_celery_worker(
Expand Down
12 changes: 2 additions & 10 deletions services/storage/tests/unit/test_async_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ async def _wait_for_job(
{"a", "set"},
],
)
async def test_asybc_jobs_workflow(
async def test_async_jobs_workflow(
initialized_app: FastAPI,
register_rpc_routes: None,
storage_rabbitmq_rpc_client: RabbitMQRPCClient,
Expand Down Expand Up @@ -241,15 +241,7 @@ async def test_asybc_jobs_workflow(
"exposed_rpc_start",
[
rpc_sync_job.__name__,
pytest.param(
rpc_async_job.__name__,
marks=pytest.mark.skip(
reason=(
"hangs after teardown for unknown reason "
"SEE https://github.com/ITISFoundation/osparc-simcore/issues/7486"
)
),
),
rpc_async_job.__name__,
],
)
async def test_async_jobs_cancel(
Expand Down
Loading