Peter Kovary
Peter Kovary
Resolves #100 Might seem a bit hacky, but it's the simplest solution that works.
The example usage of the `UNLINK` command at [redis.io/commands/unlink](https://redis.io/commands/unlink#examples) is very useful, but broken: ``` redis> SET key1 "Hello" "OK" redis> SET key2 "World" "OK" redis> UNLINK key1 key2 key3...
After a long string containing `\n` is truncated, these new lines are actually printed, causing the truncated link to be multi-line, while the original is single line (and showing `\n`)
Would be nice if the indent could be adjusted _might try looking at this over the weekend, but I make no promises_
Closes #13314 - [X] Not Applicable: Include documentation when adding new features. - [X] Include new tests or update existing tests when applicable. - [X] Allow maintainers to push and...
When adding multiple plugins to `pytester.plugins` only the first one is added as a `-p ` to the command line invocation in `pytester.runpytest_subprocess()`. ## Minimal example: ``` # Content of...