From 32580f4b1c8d71f583e71c3bd6044f0b1a5c1c47 Mon Sep 17 00:00:00 2001 From: Tiago Silva Date: Tue, 17 Oct 2023 20:57:16 +0100 Subject: [PATCH 1/2] Update conftest.py --- tests/conftest.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 297b95d9..0d8c0905 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -18,12 +18,6 @@ async def get_all(self, **kwargs: Any) -> List[Any]: return ["awesome_data"] -@pytest.fixture -def no_trio_support(anyio_backend_name): # pragma: no cover - if anyio_backend_name == "trio": - pytest.skip("Trio not supported (yet!)") - - @pytest.fixture def test_client_factory(anyio_backend_name, anyio_backend_options): # anyio_backend_name defined by: From 47c1405151a6c25500fad196efc86d11266f3e5f Mon Sep 17 00:00:00 2001 From: Tiago Silva Date: Tue, 17 Oct 2023 20:59:04 +0100 Subject: [PATCH 2/2] Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 5a65b384..3b6eb524 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,4 +2,4 @@ - [ ] The code has 100% test coverage. - [ ] The documentation was properly created or updated (if applicable) following the correct guidelines and appropriate language. -- [ ] I branched out from the latest main and the V2 tag was properly rebased from main. +- [ ] I branched out from the latest main or is a sub-branch.