From c39cd10ae5c59d5ca3896dc056aad19b38fedb46 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 19 Feb 2018 18:05:04 -0300 Subject: [PATCH 1/3] Small improvements to HOWTORELEASE --- HOWTORELEASE.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/HOWTORELEASE.rst b/HOWTORELEASE.rst index 77fef0a..270b18a 100644 --- a/HOWTORELEASE.rst +++ b/HOWTORELEASE.rst @@ -26,13 +26,11 @@ To publish a new release ``X.Y.Z``, the steps are as follows: #. Install ``pytest-xdist`` and dev requirements in a virtualenv:: - $ pip install -e . -r dev-requirements.txt + $ pip install -e . -U -r dev-requirements.txt #. Update ``CHANGELOG.rst`` file by running:: - $ towncrier --version X.Y.Z - - It might ask for confirmation to remove news fragments; answer yes. + $ towncrier --version X.Y.Z --yes #. Commit and push the branch for review. From af4409753a6e1f8f3b00ddc06477673bfd2ed550 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 19 Feb 2018 18:10:10 -0300 Subject: [PATCH 2/3] Show content for trivial changelog entries --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ac82bda..94b1be6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,4 +33,4 @@ template = "changelog/_template.rst" [[tool.towncrier.type]] directory = "trivial" name = "Trivial Changes" - showcontent = false + showcontent = true From de993e1ee3c67eb2c79d8c9cd46911ab912749a4 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 19 Feb 2018 18:10:50 -0300 Subject: [PATCH 3/3] Prepare changelog for 1.22.1 --- CHANGELOG.rst | 19 +++++++++++++++++++ changelog/234.trivial | 1 - changelog/257.bugfix | 1 - 3 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 changelog/234.trivial delete mode 100644 changelog/257.bugfix diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6e7033a..ab8e865 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,22 @@ +pytest-xdist 1.22.1 (2018-02-19) +================================ + +Bug Fixes +--------- + +- Fix issue when using ``loadscope`` or ``loadfile`` where tests would fail to + start if the first scope had only one test. (`#257 + `_) + + +Trivial Changes +--------------- + +- Change terminology used by ``pytest-xdist`` to *master* and *worker* in + arguments and messages (for example ``--max-worker-reset``). (`#234 + `_) + + pytest-xdist 1.22.0 (2018-01-11) ================================ diff --git a/changelog/234.trivial b/changelog/234.trivial deleted file mode 100644 index 1184206..0000000 --- a/changelog/234.trivial +++ /dev/null @@ -1 +0,0 @@ -Change terminology used by ``pytest-xdist`` to *master* and *worker* in arguments and messages (for example ``--max-worker-reset``). diff --git a/changelog/257.bugfix b/changelog/257.bugfix deleted file mode 100644 index 6b3cde6..0000000 --- a/changelog/257.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix issue when using ``loadscope`` or ``loadfile`` where tests would fail to start if the first scope had only one test.