Kyle Altendorf

Results 265 issues of Kyle Altendorf

With everything in one file, being a module distribution (rather than package), and having only the readme as documentation I'm left a little unclear about what is 'public interface' and...

```python @pytest.mark.skip def test_async_fixture_module_scope(testdir, cmd_opts): test_file = """ from twisted.internet import reactor, defer import pytest import pytest_twisted check_me = 0 @pytest_twisted.async_yield_fixture(scope="module") async def foo(): global check_me if check_me != 0:...

https://ci.appveyor.com/project/pytestbot/pytest-twisted - [x] Build badge - [ ] GitHub required checks

I'm digging, more details to follow.

I haven't done anything yet but maybe we end up needing something like https://github.com/pytest-dev/pytest-asyncio/pull/45

Black defaults to a line length of 88 and reformats some stuff because of that. Shall we configure it to 79? `pyproject.toml`: ```toml [tool.black] line-length = 79 ```

How about a decorator to allow directly writing `async def` tests instead of having to wrap them with `@pytest.inlineCallbacks` decorated tests. https://github.com/altendky/altendpyqt5/pull/10/files#diff-7531f542e8da5192e38a81a441db749e ```python3 async def async_await_for_signal(): timer = altendpyqt5.tests.utils.singleshot_immediate_timer() await...

It would be nice to immediately report back the build URL instead of waiting until the build is done. I am using a pipeline so I would guess I would...