diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 60760c82..81602d06 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,24 @@ +pytest-xdist 1.29.0 (2019-06-14) +================================ + +Features +-------- + +- `#226 `_: ``--max-worker-restart`` now assumes a more reasonable value (4 times the number of + nodes) when not given explicitly. This prevents test suites from running forever when the suite crashes during collection. + +- `#435 `_: When the test session is interrupted due to running out of workers, the reason is shown in the test summary + for easier viewing. + +- `#442 `_: Compatibility fix for upcoming pytest 5.0: ``session.exitstatus`` is now an ``IntEnum`` object. + + +Bug Fixes +--------- + +- `#435 `_: No longer show an internal error when we run out of workers due to crashes. + + pytest-xdist 1.28.0 (2019-04-02) ================================ diff --git a/changelog/226.feature.rst b/changelog/226.feature.rst deleted file mode 100644 index c4cb23a4..00000000 --- a/changelog/226.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -``--max-worker-restart`` now assumes a more reasonable value (4 times the number of -nodes) when not given explicitly. This prevents test suites from running forever when the suite crashes during collection. diff --git a/changelog/435.bugfix.rst b/changelog/435.bugfix.rst deleted file mode 100644 index 5e25be3e..00000000 --- a/changelog/435.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -No longer show an internal error when we run out of workers due to crashes. diff --git a/changelog/435.feature.rst b/changelog/435.feature.rst deleted file mode 100644 index dc32c06a..00000000 --- a/changelog/435.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -When the test session is interrupted due to running out of workers, the reason is shown in the test summary -for easier viewing. diff --git a/changelog/442.feature.rst b/changelog/442.feature.rst deleted file mode 100644 index 700b012e..00000000 --- a/changelog/442.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Compatibility fix for upcoming pytest 5.0: ``session.exitstatus`` is now an ``IntEnum`` object.