File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,34 @@ $ pip install --user --upgrade --pre libtmux
15
15
16
16
<!-- To maintainers and contributors: Please add notes for the forthcoming version above -->
17
17
18
+ ### Testing
19
+
20
+ - Add ` pytest-xdist ` ([ PyPI] ( https://pypi.org/project/pytest-xdist/ ) , [ GitHub] ( https://github.com/pytest-dev/pytest-xdist ) ) for parallel testing (#522 ).
21
+
22
+ pytest:
23
+
24
+ ``` console
25
+ py.test -n auto
26
+ ```
27
+
28
+ pytest-watcher:
29
+
30
+ ``` console
31
+ env PYTEST_ADDOPTS='-n auto' make start
32
+ ```
33
+
34
+ entr(1):
35
+
36
+ ``` console
37
+ make watch_test test="-n auto"
38
+ ```
39
+
40
+ - Improve flakey tests:
41
+
42
+ - ` retry_until() ` tests: Relax clock in ` assert ` (#522 ).
43
+ - ` tests/test_pane.py::test_capture_pane_start ` : Use ` retry_until() ` to poll,
44
+ improve correctness of test (#522 ).
45
+
18
46
### Documentation
19
47
20
48
- Automatically linkify links that were previously only text.
You can’t perform that action at this time.
0 commit comments