Disable celery tasks for Onedata tests

Fix upload jobs not being picked up by the job handlers:

```
FAILED test/integration/objectstore/test_onedata_objectstore.py::test_tools[multi_output_assign_primary] - galaxy.tool_util.verify.wait.TimeoutAssertionError: Timed out after 60.25 seconds waiting on tool test run.
FAILED test/integration/objectstore/test_onedata_objectstore.py::test_tools[composite_output_tests] - galaxy.tool_util.verify.wait.TimeoutAssertionError: Timed out after 60.25 seconds waiting on tool test run.
FAILED test/integration/objectstore/test_onedata_objectstore.py::test_tools[metadata_bam] - galaxy.tool_util.verify.wait.TimeoutAssertionError: Timed out after 60.25 seconds waiting on tool test run.
```
This commit is contained in:
Nicola Soranzo
2025-09-18 03:48:54 +01:00
parent 0c2d349e35
commit 45f2fd96a5
@@ -28,7 +28,10 @@ TEST_TOOL_IDS = [
class TestOnedataObjectStoreIntegration(BaseOnedataObjectStoreIntegrationTestCase):
pass
@classmethod
def handle_galaxy_config_kwds(cls, config):
super().handle_galaxy_config_kwds(config)
config["enable_celery_tasks"] = False
instance = integration_util.integration_module_instance(TestOnedataObjectStoreIntegration)