James Ansley

Results 4 issues of James Ansley

A recent release included support for alternative (i.e. non-"test") test prefixes. Pytest, also uses a custom `__test__` dunder when discovering tests: [python.py#L349](https://github.com/pytest-dev/pytest/blob/main/src/_pytest/python.py#L349). I.e. any function with the attribute `__test__ =...

I have been making my own client ([tumblrdotcom](https://github.com/James-Ansley/tumblr-dot-com)) and have noticed posts with any non-zero indent_level do not render correctly when posted. I have also noticed that even if I...

The `verify_all` function currently hints the parameters `a_list` as `List[str]` and `formatter` as `Optional[Callable]`. Perhaps better type hints would be (using 3.12 syntax but this could be done with the...

For example: `@mycoolscope/enum` generates the import `import * as enum from "@mycoolscope/enum";`. One possible workaround is to capitalise package names when the package name is a keyword. E.g. `import *...