14
0
forked from pool/python-mocket

- Update to version 3.11:

- Migrating the HTTP[S] mock from relying on http-parser to httptools.
 - Never discovered the root cause for the failing tests with aiohttp/Python 3.11 (first time ever I added @pytest.mark.xfail to a few tests). Same test works with httpx, so I suspect it's related to a client issue. I'll probably migrate to httpx as the reference client for testing async/await code.
- remove patches merged upstream:
    0007-Switching-to-httptools.parser.HttpRequestParser.patch
    0008-Disabling-tests-for-pook-when-testing-Python-3.11.patch
    0009-Removing-DeprecationWarning-all-over-the-place.patch
    0010-Python-3.11-needs-an-async-decorator.patch
    0012-Removing-async-timeout-dependency.patch
    0013-Refactoring-using-event_loop-fixture.patch
    0014-Refactoring-using-tempfile-as-a-context-manager.patch
    0015-Skip-those-tests-and-see-what-happens-to-the-rest.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mocket?expand=0&rev=61
This commit is contained in:
Sebastian Wagner
2023-02-19 21:06:08 +00:00
committed by Git OBS Bridge
parent 83d90a8cf9
commit 3af5ffac37
12 changed files with 21 additions and 1742 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sun Feb 19 21:05:20 UTC 2023 - Sebastian Wagner <sebix@sebix.at>
- Update to version 3.11:
- Migrating the HTTP[S] mock from relying on http-parser to httptools.
- Never discovered the root cause for the failing tests with aiohttp/Python 3.11 (first time ever I added @pytest.mark.xfail to a few tests). Same test works with httpx, so I suspect it's related to a client issue. I'll probably migrate to httpx as the reference client for testing async/await code.
- remove patches merged upstream:
0007-Switching-to-httptools.parser.HttpRequestParser.patch
0008-Disabling-tests-for-pook-when-testing-Python-3.11.patch
0009-Removing-DeprecationWarning-all-over-the-place.patch
0010-Python-3.11-needs-an-async-decorator.patch
0012-Removing-async-timeout-dependency.patch
0013-Refactoring-using-event_loop-fixture.patch
0014-Refactoring-using-tempfile-as-a-context-manager.patch
0015-Skip-those-tests-and-see-what-happens-to-the-rest.patch
-------------------------------------------------------------------
Thu Feb 2 11:44:50 UTC 2023 - Dirk Müller <dmueller@suse.com>