Jorgen Schäfer
Jorgen Schäfer
This series of commits are trivial changes that I made to the theme for my local use case which are trivial and make it a lot easier to extend the...
The following code produces an uncaught LookupError. I would expect Rope to produce a ModuleSyntaxError, as it does when the string passed to `code_assist` is `str` and not `unicode`. ```...
Currently, the return value of matchers is pretty unreable. There should be a function or even syntax to create the return value that makes it obvious what is happening. See...
As a user, I want to see the results of all failed `expect` calls in a failed spec in order to get a full understanding of the erroneous behavior. For...
Syntactic sugar for `:and-call-fake`: ``` Lisp (defspy function-name (args ...) body... (spy-original 1 2) ...) ```
Buttercup should be able to report stack traces in various ways, depending on a command line argument. `--traceback full` should simply emit the full traceback `--traceback crop` should crop the...
Sisyphus is a library for ERT. Check it for ideas we could use in Buttercup: https://github.com/phillord/sisyphus
The `buttercup` script that comes with buttercup is not documented anywhere. That's not good.
`eshell` currently ignores virtualenvs set by pyvenv. To support eshell, we need to set `eshell-modify-global-environment` to `t` and `eshell-path-env` to the path after activating and deactivating a virtualenv. jorgenschaefer/elpy#1172