Satyajeet Kanetkar
Satyajeet Kanetkar
Dynamic imports (`import("foo").then(foo => foo("bar")).catch(()=>console.log("import error")`) are actually not supported in Node. As I understand it, these are transpiled to CommonJS imports before running the tests. There may be a...
Most non-trivial cookbooks will have a `resources` directory that contains all the "reusable" chef resources. This being merged with the `lib/resources` directory in the inspec source code causes issues when...
Given that _Books that will blow your mind_ is very subjective, it would help to define what does a book have to do, to be considered "Mind Expanding". Given the...
Most terminals allow configuration of a default foreground/background color. Below is a screenshot from lxterminal. This was possible in `vterm`, using the `vterm-color-default` face: ``` emacs-lisp (set-face-attribute 'vterm-color-default nil :foreground...
Can we use add `django-debug-toolbar` to the dev dependencies? It is a godsend when debugging issues with all things django.
Jekyll populates the `excerpt` field for every markdown post/page with the first paragraph from the document. For `.org` files `jekyll-org` is not setting the field, which causes `jekyll` to return...
The last release was more than six months ago. Current `HEAD` contains a few important bug fixes like [change: Stricter regexps for _parse_boolean](https://github.com/eggcaker/jekyll-org/commit/54c0346b5360a5acea876fe5138b7c34a937ef93) Would be nice if we could start...
If I have a test nested inside a class: ``` class TestFoobar: class TestWhenFooIsBar: def test_it_should_do_something(): assert 1 == 1 ``` It should convert the class name to a sentence...
`pytest-spec` should attempt to remove whatever prefix has been configured for `pytest` through the `python_classes` and `python_functions` config variables. Right now, it hardcodes this behaviour only for `Test*` prefix for...
**Bug Report** mypy incorrectly tags a function argument of type `Mapping[K, V]` where `K` and `V` are `TypeVar` with the return value of the caller function. **To Reproduce** The below...