diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..2e75628 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,6 @@ +--- +blank_issues_enabled: true +contact_links: + - name: ❓ Ask a Question + url: https://github.com/klaasnicolaas/python-liege/discussions/new/choose + about: We use GitHub issues for tracking bugs / feature requests, check discussions for questions. diff --git a/poetry.lock b/poetry.lock index 4e6fbc2..64e1a78 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1138,8 +1138,7 @@ files = [ {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win32.whl", hash = "sha256:763d65baa3b952479c4e972669f679fe490eee058d5aa85da483ebae2009d231"}, {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:d000f258cf42fec2b1bbf2863c61d7b8918d31ffee905da62dede869254d3b8a"}, {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:045e0626baf1c52e5527bd5db361bc83180faaba2ff586e763d3d5982a876a9e"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:1a6391a7cabb7641c32517539ca42cf84b87b667bad38b78d4d42dd23e957c81"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:9c7617df90c1365638916b98cdd9be833d31d337dbcd722485597b43c4a215bf"}, + {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_12_6_arm64.whl", hash = "sha256:721bc4ba4525f53f6a611ec0967bdcee61b31df5a56801281027a3a6d1c2daf5"}, {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:41d0f1fa4c6830176eef5b276af04c89320ea616655d01327d5ce65e50575c94"}, {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win32.whl", hash = "sha256:f6d3d39611ac2e4f62c3128a9eed45f19a6608670c5a2f4f07f24e8de3441d38"}, {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:da538167284de58a52109a9b89b8f6a53ff8437dd6dc26d33b57bf6699153122"}, @@ -1468,4 +1467,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "54a471c8fa4fa13178853d0784620bbc49dcde88597f07d89c238d8dca6d2996" +content-hash = "d421b6ad8181cd646cd5fba98b052d8328f69091c2c2df20cbcd93a2f4442f13" diff --git a/tests/test_liege.py b/tests/test_liege.py index 7ef4f09..c2f58df 100644 --- a/tests/test_liege.py +++ b/tests/test_liege.py @@ -53,6 +53,7 @@ async def test_internal_session(aresponses: ResponsesMockServer) -> None: @pytest.mark.asyncio async def test_timeout(aresponses: ResponsesMockServer) -> None: """Test request timeout from the Open Data Platform API of Liège.""" + # Faking a timeout by sleeping async def response_handler(_: aiohttp.ClientResponse) -> Response: await asyncio.sleep(0.2)