aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2024-07-10 18:59:33 +0200
committerGravatar Johannes Christ <[email protected]>2024-07-10 18:59:33 +0200
commit28f774445f911a5670e3eb079148ab288e95cfc3 (patch)
tree474759b3d434aeafdbc4eed307d7401383eba56c /pydis_site/apps
parentMerge pull request #1357 from python-discord/dependabot/pip/ruff-0.5.1 (diff)
Pleasure the style dictator
Diffstat (limited to 'pydis_site/apps')
-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),