@@ -1,3 +1,18 @@
|
||||
pytest-xdist 1.22.3 (2018-07-23)
|
||||
================================
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Fix issue of virtualized or containerized environments not reporting the number of CPUs correctly. (`#9 <https://github.com/pytest-dev/pytest-xdist/issues/9>`_)
|
||||
|
||||
|
||||
Trivial Changes
|
||||
---------------
|
||||
|
||||
- Make all classes subclass from ``object`` and fix ``super()`` call in ``LoadFileScheduling``; (`#297 <https://github.com/pytest-dev/pytest-xdist/issues/297>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.22.2 (2018-02-26)
|
||||
================================
|
||||
|
||||
|
||||
@@ -24,13 +24,13 @@ To publish a new release ``X.Y.Z``, the steps are as follows:
|
||||
|
||||
#. Create a new branch named ``release-X.Y.Z`` from the latest ``master``.
|
||||
|
||||
#. Install ``pytest-xdist`` and dev requirements in a virtualenv::
|
||||
#. Install ``tox`` in a virtualenv::
|
||||
|
||||
$ pip install -e . -U -r dev-requirements.txt
|
||||
$ pip install tox
|
||||
|
||||
#. Update ``CHANGELOG.rst`` file by running::
|
||||
#. Update the necessary files with::
|
||||
|
||||
$ towncrier --version X.Y.Z --yes
|
||||
$ tox -e release -- X.Y.Z
|
||||
|
||||
#. Commit and push the branch for review.
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
Make all classes subclass from ``object`` and fix ``super()`` call in ``LoadFileScheduling``;
|
||||
@@ -1 +0,0 @@
|
||||
Fix issue of virtualized or containerized environments not reporting the number of CPUs correctly.
|
||||
@@ -1 +0,0 @@
|
||||
towncrier
|
||||
13
tox.ini
13
tox.ini
@@ -40,7 +40,18 @@ deps = readme
|
||||
skip_install = true
|
||||
commands = python setup.py check -r -s
|
||||
|
||||
[testenv:release]
|
||||
changedir=
|
||||
decription = do a release, required posarg of the version number
|
||||
basepython = python3.6
|
||||
skipsdist = True
|
||||
usedevelop = True
|
||||
passenv = *
|
||||
deps =
|
||||
towncrier
|
||||
commands =
|
||||
towncrier --version {posargs} --yes
|
||||
|
||||
[pytest]
|
||||
addopts = -rsfxX
|
||||
;; hello
|
||||
|
||||
|
||||
Reference in New Issue
Block a user