John Belmonte
John Belmonte
Re. https://github.com/timothycrosley/isort/issues/924, I'd like to see the isort package use pip-api.
see `make_ticks_abs()`
the work on the python3 branch is considered inferior to #130
Having a `feature/python3` branch which is inferior to what's hidden in PR #130 (among numerous half-attempt PRs) is causing a lot of confusion and duplicate efforts. @vishnubob please close the...
I have a case where building packages for pypy (grpcio, grpcio-tools) takes about 6 minutes-- it's way too slow to introduce a matrix. If anyone has a manual example using...
Perhaps that there is a bug in async fixtures which causes the nursery to never be cancelled when the test scope exits? I've been observing mysterious hangs on tests, and...
trio-websocket also has an open mystery on hanging tests, in that case it's specific to python 3.5 / Linux / Travis. It would be interesting to check whether that's the...
> I think the way forward here is probably to: > > * add some kind of "helper task" support to trio: [python-trio/trio#1521](https://github.com/python-trio/trio/issues/1521) > * deprecate the `nursery` fixture, since...
The goal is not to refactor my simplistic test example-- rather to avoid surprises commonly encountered by pytest-trio users. (E.g. let's not assume the user is comfortable with writing fixtures.)...
hack: ```python import pytest_trio pytest_trio.plugin.choose_run = lambda config: partial(trio.run, strict_exception_groups=False) ``` Why I want this: my package tests should be able to work with various versions of trio, including those...