From 38c21c62f57eed74257b47b64b8f802281266f46 Mon Sep 17 00:00:00 2001
From: Valentin Rigal <rigal@teklia.com>
Date: Fri, 22 Mar 2024 11:43:07 +0100
Subject: [PATCH] Accelerate execution of test_task_details

---
 arkindex/ponos/tests/test_api.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arkindex/ponos/tests/test_api.py b/arkindex/ponos/tests/test_api.py
index 84d5e3f875..3e1559e818 100644
--- a/arkindex/ponos/tests/test_api.py
+++ b/arkindex/ponos/tests/test_api.py
@@ -111,6 +111,7 @@ class TestAPI(FixtureAPITestCase):
             resp = self.client.get(reverse("api:task-details", args=[self.task1.id]))
             self.assertEqual(resp.status_code, status.HTTP_403_FORBIDDEN)
 
+    @patch("arkindex.project.aws.s3")
     @expectedFailure
     def test_task_details_requires_process_guest(self):
         self.process.creator = self.superuser
-- 
GitLab