diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 14cee38..f4cb230 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,34 @@ +pytest-xdist 1.19.0 (2017-08-09) +================================ + +Deprecations and Removals +------------------------- + +- ``--boxed`` functionality has been moved to a separate plugin, `pytest-forked + `_. This release now depends on + `` pytest-forked`` and provides ``--boxed`` as a backward compatibility + option. (`#1 `_) + + +Features +-------- + +- New ``--dist=loadscope`` option: sends group of related tests to the same + worker. Tests are grouped by module for test functions and by class for test + methods. See ``README.rst`` for more information. (`#191 `_) + +- Warnings are now properly transferred from workers to the master node. (`#92 + `_) + + +Bug Fixes +--------- + +- Fix serialization of native tracebacks (``--tb=native``). (`#196 + `_) + + pytest-xdist 1.18.2 (2017-07-28) ================================ diff --git a/changelog/1.removal b/changelog/1.removal deleted file mode 100644 index 57e70ba..0000000 --- a/changelog/1.removal +++ /dev/null @@ -1 +0,0 @@ -``--boxed`` functionality has been moved to a separate plugin, `pytest-forked `_. This release now depends on `` pytest-forked`` and provides ``--boxed`` as a backward compatibility option. \ No newline at end of file diff --git a/changelog/191.feature b/changelog/191.feature deleted file mode 100644 index 0e1786f..0000000 --- a/changelog/191.feature +++ /dev/null @@ -1,2 +0,0 @@ -New ``--dist=loadscope`` option: sends group of related tests to the same worker. -Tests are grouped by module for test functions and by class for test methods. See ``README.rst`` for more information. diff --git a/changelog/196.bugfix b/changelog/196.bugfix deleted file mode 100644 index 1e7c1fe..0000000 --- a/changelog/196.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix serialization of native tracebacks (``--tb=native``). diff --git a/changelog/92.feature b/changelog/92.feature deleted file mode 100644 index 8f950c5..0000000 --- a/changelog/92.feature +++ /dev/null @@ -1 +0,0 @@ -Warnings are now properly transferred from workers to the master node.