aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pydis_site/apps/api/tests/test_github_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/tests/test_github_utils.py b/pydis_site/apps/api/tests/test_github_utils.py
index d36111c9..7b41d2f6 100644
--- a/pydis_site/apps/api/tests/test_github_utils.py
+++ b/pydis_site/apps/api/tests/test_github_utils.py
@@ -210,7 +210,7 @@ class ArtifactFetcherTests(unittest.TestCase):
def setUp(self) -> None:
self.call_args = ["owner", "repo", "action_sha", "action_name", "artifact_name"]
- self.client = httpx.Client(base_url="https://example.com")
+ self.client = httpx.Client(base_url="https://example.com", timeout=5)
self.patchers = [
mock.patch.object(self.client, "send", new=self.get_response_get_artifact),