Conversation
| with tmpdir.as_cwd(): | ||
| runner = CliRunner() | ||
| # Use tmux server (socket name) used in the test | ||
| cli_args = cli_args + ['-L', server.socket_name] |
There was a problem hiding this comment.
server is a pytest fixture for a randomly generated tmux session. In order to prevent it clobbering from any of the developer's sessions, it's ran on a custom socket name (via -L socket-name).
Off topic 1: technically it's also possible tmuxp tests could be run in parallel: tmuxp / libtmux respects socket name and socket path
Off topic 2: I created an issue at #495 to streamline freeze a bit more (not require entering the filename a second time)
Codecov Report
@@ Coverage Diff @@
## master #494 +/- ##
==========================================
+ Coverage 75.37% 78.76% +3.39%
==========================================
Files 5 5
Lines 796 796
Branches 232 232
==========================================
+ Hits 600 627 +27
+ Misses 146 114 -32
- Partials 50 55 +5
Continue to review full report at Codecov.
|
#491
Fixes #493