Colin Dunklau
Colin Dunklau
Write an actual cleanup method and document how/when to use it. It should: - [ ] Make the webhook responses blow up so no more processing happens and so Facebook...
I was looking for a way to do what `jsonschema.validators.validator_for` does, but didn't find it in the initial "basic usage" section. A band-aid could be to expand the basic usage...
I noticed that [the FAQ entry](https://github.com/python-hyper/hyperlink/blob/df5f7aee5c1241d2512e460826953fc8e2c0d8e8/docs/faq.rst#how-does-hyperlink-compare-to-other-libraries) doesn't mention [`yarl`](https://github.com/aio-libs/yarl). On the surface, both libs seem quite similar, both do the immutable thing, and are IRI-capable. After a (very cursory) review,...
The custom runner example under [Programmatic API](https://nightwatchjs.org/guide/running-tests/#programmatic-api) fails when copy-pasted from the website: ```javascript const Nightwatch = require('nightwatch'); // read the CLI arguments Nightwatch.cli(function(argv) { argv.source = argv[''].slice(0); // create...
This is not a bug in rproxy per se, it lies with txsni. I'm posting it here to keep rproxy users in the loop. While the txacme AcmeIssuingService successfully renews...
Ideally rproxy/txacme would hit the staging server first to double check everything is fine... but rproxy should at least support hitting the staging server if configured that way. Had a...
This snippet doesn't work right in python 2.4.3. It appears again in get_normalized_parameters(). ``` python except TypeError, e: assert 'is not iterable' in str(e) ``` The problem is that the...
Ref https://github.com/pytest-dev/pytest-twisted/pull/75#discussion_r380495375 for the gory details, but I'll try to summarize, as there are a few similar yet distinct issues here. First... ## The Background 1. Twisted's `AsyncioSelectorReactor` uses `asyncio.get_event_loop`...
Currently, you must *call* ``pytest_twisted.async_fixture`` and ``pytest_twisted.async_yield_fixture``, and (until #74 fixes it) the readme demonstrates no-call semantics. I propose allowing this form by mimicking `pytest.fixtures`'s behavior, to improve consistency and...
It would be nice if `generate` and `receive` had an option that would make them output events in a structured format, so another program could tell what's going on. The...