Terry Kerr
Terry Kerr
If you install deno and attempt to install something when the deno root does not exist and is set with `DENO_INSTALL_ROOT` you get an incredibly unhelpful error: error: No such...
An example test which will fail (or more accurately: block infinitely) ```rust #[test] fn futures_do_not_block() { let (tx, rx) = multiqueue::broadcast_fut_queue::(16); let mut rt = tokio::runtime::Runtime::new().unwrap(); rt.block_on( rx .for_each(|_| {...
### Confirmation - [X] My issue isn't already found on the issue tracker. - [X] I have replicated my issue using the latest version of the provider and it is...
Allow tests and test nodes to be grouped through the + operator something like so ``` tests_set = tt.tests.some.tests + tt.some.other.tests ```
`None` [is a keyword](https://docs.python.org/3/reference/lexical_analysis.html#keywords), so it's invalid to attempt to use it as a name in a `pyi` file. I would expect that the plugin wouldn't produce invalid python, even...