Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7daba1c618 | ||
|
|
7ebf3ecee2 | ||
|
|
fb40056950 | ||
|
|
407d6e16e2 | ||
|
|
956c79700f | ||
|
|
e165c2f3fb | ||
|
|
bbc5416037 | ||
|
|
a630e55887 | ||
|
|
7d41db3685 | ||
|
|
cdf422dec8 | ||
|
|
abec5e60a2 | ||
|
|
9fcf8fa636 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -23,7 +23,7 @@ include/
|
||||
lib/
|
||||
bin/
|
||||
env/
|
||||
xdist/_version.py*
|
||||
src/xdist/_version.py*
|
||||
pytest_xdist.egg-info
|
||||
issue/
|
||||
3rdparty/
|
||||
|
||||
@@ -4,7 +4,7 @@ repos:
|
||||
hooks:
|
||||
- id: black
|
||||
args: [--safe, --quiet]
|
||||
language_version: python3.6
|
||||
language_version: python3.7
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v1.3.0
|
||||
hooks:
|
||||
@@ -21,4 +21,4 @@ repos:
|
||||
files: ^(CHANGELOG.rst|HOWTORELEASE.rst|README.rst|changelog/.*)$
|
||||
language: python
|
||||
additional_dependencies: [pygments, restructuredtext_lint]
|
||||
python_version: python3.6
|
||||
python_version: python3.7
|
||||
|
||||
24
.travis.yml
24
.travis.yml
@@ -12,7 +12,7 @@ notifications:
|
||||
- pytest-commit@python.org
|
||||
|
||||
install:
|
||||
- pip install -U pip
|
||||
- pip install -U pip setuptools
|
||||
- pip install tox setuptools_scm
|
||||
script: tox
|
||||
|
||||
@@ -25,13 +25,13 @@ stages:
|
||||
jobs:
|
||||
include:
|
||||
- stage: baseline
|
||||
python: '3.6'
|
||||
python: '3.7'
|
||||
env: TOXENV=linting
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.cache/pre-commit
|
||||
- python: '3.6'
|
||||
env: TOXENV=py36-pytestlatest
|
||||
- python: '3.7'
|
||||
env: TOXENV=py37-pytestlatest
|
||||
- python: '2.7'
|
||||
env: TOXENV=py27-pytestlatest
|
||||
|
||||
@@ -40,19 +40,15 @@ jobs:
|
||||
env: TOXENV=py34-pytestlatest
|
||||
- python: "3.5"
|
||||
env: TOXENV=py35-pytestlatest
|
||||
- python: "3.6"
|
||||
env: TOXENV=py36-pytestlatest
|
||||
- python: "3.7"
|
||||
env: TOXENV=py37-pytestlatest
|
||||
- python: "2.7"
|
||||
env: TOXENV=py27-pytestmaster
|
||||
- python: "2.7"
|
||||
env: TOXENV=py27-pytestfeatures
|
||||
- python: "3.6"
|
||||
env: TOXENV=py36-pytestmaster
|
||||
- python: "3.6"
|
||||
env: TOXENV=py36-pytestfeatures
|
||||
env: TOXENV=py37-pytestmaster
|
||||
- python: "3.7"
|
||||
env: TOXENV=py37-pytestfeatures
|
||||
|
||||
- stage: deploy
|
||||
python: '3.6'
|
||||
python: '3.7'
|
||||
env:
|
||||
install: pip install -U setuptools setuptools_scm
|
||||
script: skip
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
pytest-xdist 1.29.0 (2019-06-14)
|
||||
================================
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- `#226 <https://github.com/pytest-dev/pytest-xdist/issues/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 <https://github.com/pytest-dev/pytest-xdist/issues/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 <https://github.com/pytest-dev/pytest-xdist/issues/442>`_: Compatibility fix for upcoming pytest 5.0: ``session.exitstatus`` is now an ``IntEnum`` object.
|
||||
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- `#435 <https://github.com/pytest-dev/pytest-xdist/issues/435>`_: No longer show an internal error when we run out of workers due to crashes.
|
||||
|
||||
|
||||
pytest-xdist 1.28.0 (2019-04-02)
|
||||
================================
|
||||
|
||||
|
||||
@@ -5,13 +5,11 @@ environment:
|
||||
- TOXENV: "py35-pytestlatest"
|
||||
- TOXENV: "py36-pytestlatest"
|
||||
- TOXENV: "py37-pytestlatest"
|
||||
- TOXENV: "py27-pytestmaster"
|
||||
- TOXENV: "py36-pytestmaster"
|
||||
- TOXENV: "py27-pytestfeatures"
|
||||
- TOXENV: "py36-pytestfeatures"
|
||||
- TOXENV: "py37-pytestmaster"
|
||||
- TOXENV: "py37-pytestfeatures"
|
||||
|
||||
install:
|
||||
- C:\Python37\python -m pip install -U pip
|
||||
- C:\Python37\python -m pip install -U pip setuptools
|
||||
- C:\Python37\python -m pip install -U tox setuptools_scm
|
||||
|
||||
build: false # Not a C# project, build stuff at the test step instead.
|
||||
|
||||
6
setup.py
6
setup.py
@@ -8,7 +8,7 @@ with open("README.rst") as f:
|
||||
|
||||
setup(
|
||||
name="pytest-xdist",
|
||||
use_scm_version={"write_to": "xdist/_version.py"},
|
||||
use_scm_version={"write_to": "src/xdist/_version.py"},
|
||||
description="pytest xdist plugin for distributed testing"
|
||||
" and loop-on-failing modes",
|
||||
long_description=long_description,
|
||||
@@ -17,7 +17,9 @@ setup(
|
||||
author_email="pytest-dev@python.org,holger@merlinux.eu",
|
||||
url="https://github.com/pytest-dev/pytest-xdist",
|
||||
platforms=["linux", "osx", "win32"],
|
||||
packages=find_packages(exclude=["testing", "example"]),
|
||||
packages=find_packages(where="src"),
|
||||
package_dir={"": "src"},
|
||||
extras_require={"testing": ["filelock"]},
|
||||
entry_points={
|
||||
"pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"]
|
||||
},
|
||||
|
||||
@@ -46,9 +46,9 @@ class DSession(object):
|
||||
self._failed_collection_errors = {}
|
||||
self._active_nodes = set()
|
||||
self._failed_nodes_count = 0
|
||||
self._max_worker_restart = self.config.option.maxworkerrestart
|
||||
if self._max_worker_restart is not None:
|
||||
self._max_worker_restart = int(self._max_worker_restart)
|
||||
self._max_worker_restart = get_default_max_worker_restart(self.config)
|
||||
# summary message to print at the end of the session
|
||||
self._summary_report = None
|
||||
try:
|
||||
self.terminal = config.pluginmanager.getplugin("terminalreporter")
|
||||
except KeyError:
|
||||
@@ -198,15 +198,23 @@ class DSession(object):
|
||||
)
|
||||
if maximum_reached:
|
||||
if self._max_worker_restart == 0:
|
||||
msg = "Worker restarting disabled"
|
||||
msg = "worker {} crashed and worker restarting disabled".format(
|
||||
node.gateway.id
|
||||
)
|
||||
else:
|
||||
msg = "Maximum crashed workers reached: %d" % self._max_worker_restart
|
||||
self.report_line(msg)
|
||||
msg = "maximum crashed workers reached: %d" % self._max_worker_restart
|
||||
self._summary_report = msg
|
||||
self.report_line("\n" + msg)
|
||||
self.triggershutdown()
|
||||
else:
|
||||
self.report_line("Replacing crashed worker %s" % node.gateway.id)
|
||||
self.report_line("\nreplacing crashed worker %s" % node.gateway.id)
|
||||
self._clone_node(node)
|
||||
self._active_nodes.remove(node)
|
||||
|
||||
def pytest_terminal_summary(self, terminalreporter):
|
||||
if self.config.option.verbose >= 0 and self._summary_report:
|
||||
terminalreporter.write_sep("=", "xdist: {}".format(self._summary_report))
|
||||
|
||||
def worker_collectionfinish(self, node, ids):
|
||||
"""worker has finished test collection.
|
||||
|
||||
@@ -316,7 +324,7 @@ class DSession(object):
|
||||
# XXX count no of failures and retry N times
|
||||
runner = self.config.pluginmanager.getplugin("runner")
|
||||
fspath = nodeid.split("::")[0]
|
||||
msg = "Worker %r crashed while running %r" % (worker.gateway.id, nodeid)
|
||||
msg = "worker %r crashed while running %r" % (worker.gateway.id, nodeid)
|
||||
rep = runner.TestReport(
|
||||
nodeid, (fspath, None, fspath), (), "failed", msg, "???"
|
||||
)
|
||||
@@ -390,10 +398,16 @@ class TerminalDistReporter(object):
|
||||
return
|
||||
self.write_line("[%s] node down: %s" % (node.gateway.id, error))
|
||||
|
||||
# def pytest_xdist_rsyncstart(self, source, gateways):
|
||||
# targets = ",".join([gw.id for gw in gateways])
|
||||
# msg = "[%s] rsyncing: %s" %(targets, source)
|
||||
# self.write_line(msg)
|
||||
# def pytest_xdist_rsyncfinish(self, source, gateways):
|
||||
# targets = ", ".join(["[%s]" % gw.id for gw in gateways])
|
||||
# self.write_line("rsyncfinish: %s -> %s" %(source, targets))
|
||||
|
||||
def get_default_max_worker_restart(config):
|
||||
"""gets the default value of --max-worker-restart option if it is not provided.
|
||||
|
||||
Use a reasonable default to avoid workers from restarting endlessly due to crashing collections (#226).
|
||||
"""
|
||||
result = config.option.maxworkerrestart
|
||||
if result is not None:
|
||||
result = int(result)
|
||||
elif config.option.numprocesses:
|
||||
# if --max-worker-restart was not provided, use a reasonable default (#226)
|
||||
result = config.option.numprocesses * 4
|
||||
return result
|
||||
@@ -41,7 +41,8 @@ class WorkerInteractor(object):
|
||||
|
||||
@pytest.hookimpl(hookwrapper=True)
|
||||
def pytest_sessionfinish(self, exitstatus):
|
||||
self.config.workeroutput["exitstatus"] = exitstatus
|
||||
# in pytest 5.0+, exitstatus is an IntEnum object
|
||||
self.config.workeroutput["exitstatus"] = int(exitstatus)
|
||||
yield
|
||||
self.sendevent("workerfinished", workeroutput=self.config.workeroutput)
|
||||
|
||||
@@ -849,8 +849,8 @@ class TestNodeFailure:
|
||||
res = testdir.runpytest(f, "-n1")
|
||||
res.stdout.fnmatch_lines(
|
||||
[
|
||||
"*Replacing crashed worker*",
|
||||
"*Worker*crashed while running*",
|
||||
"replacing crashed worker gw*",
|
||||
"worker*crashed while running*",
|
||||
"*1 failed*1 passed*",
|
||||
]
|
||||
)
|
||||
@@ -868,8 +868,8 @@ class TestNodeFailure:
|
||||
res = testdir.runpytest(f, "-n2")
|
||||
res.stdout.fnmatch_lines(
|
||||
[
|
||||
"*Replacing crashed worker*",
|
||||
"*Worker*crashed while running*",
|
||||
"replacing crashed worker gw*",
|
||||
"worker*crashed while running*",
|
||||
"*1 failed*3 passed*",
|
||||
]
|
||||
)
|
||||
@@ -885,8 +885,8 @@ class TestNodeFailure:
|
||||
res = testdir.runpytest(f, "--dist=each", "--tx=popen")
|
||||
res.stdout.fnmatch_lines(
|
||||
[
|
||||
"*Replacing crashed worker*",
|
||||
"*Worker*crashed while running*",
|
||||
"replacing crashed worker gw*",
|
||||
"worker*crashed while running*",
|
||||
"*1 failed*1 passed*",
|
||||
]
|
||||
)
|
||||
@@ -922,14 +922,35 @@ class TestNodeFailure:
|
||||
res = testdir.runpytest(f, "-n4", "--max-worker-restart=1")
|
||||
res.stdout.fnmatch_lines(
|
||||
[
|
||||
"*Replacing crashed worker*",
|
||||
"*Maximum crashed workers reached: 1*",
|
||||
"*Worker*crashed while running*",
|
||||
"*Worker*crashed while running*",
|
||||
"replacing crashed worker*",
|
||||
"maximum crashed workers reached: 1*",
|
||||
"worker*crashed while running*",
|
||||
"worker*crashed while running*",
|
||||
"*2 failed*2 passed*",
|
||||
]
|
||||
)
|
||||
|
||||
def test_max_worker_restart_tests_queued(self, testdir):
|
||||
f = testdir.makepyfile(
|
||||
"""
|
||||
import os, pytest
|
||||
@pytest.mark.parametrize('i', range(10))
|
||||
def test(i): os._exit(1)
|
||||
"""
|
||||
)
|
||||
res = testdir.runpytest(f, "-n2", "--max-worker-restart=3")
|
||||
res.stdout.fnmatch_lines(
|
||||
[
|
||||
"replacing crashed worker*",
|
||||
"maximum crashed workers reached: 3*",
|
||||
"worker*crashed while running*",
|
||||
"worker*crashed while running*",
|
||||
"* xdist: maximum crashed workers reached: 3 *",
|
||||
"* 4 failed in *",
|
||||
]
|
||||
)
|
||||
assert "INTERNALERROR" not in res.stdout.str()
|
||||
|
||||
def test_max_worker_restart_die(self, testdir):
|
||||
f = testdir.makepyfile(
|
||||
"""
|
||||
@@ -939,7 +960,10 @@ class TestNodeFailure:
|
||||
)
|
||||
res = testdir.runpytest(f, "-n4", "--max-worker-restart=0")
|
||||
res.stdout.fnmatch_lines(
|
||||
["*Unexpectedly no active workers*", "*INTERNALERROR*"]
|
||||
[
|
||||
"* xdist: worker gw* crashed and worker restarting disabled *",
|
||||
"* no tests ran in *",
|
||||
]
|
||||
)
|
||||
|
||||
def test_disable_restart(self, testdir):
|
||||
@@ -954,9 +978,10 @@ class TestNodeFailure:
|
||||
res = testdir.runpytest(f, "-n4", "--max-worker-restart=0")
|
||||
res.stdout.fnmatch_lines(
|
||||
[
|
||||
"*Worker restarting disabled*",
|
||||
"*Worker*crashed while running*",
|
||||
"*1 failed*2 passed*",
|
||||
"worker gw* crashed and worker restarting disabled",
|
||||
"*worker*crashed while running*",
|
||||
"* xdist: worker gw* crashed and worker restarting disabled *",
|
||||
"* 1 failed, 2 passed in *",
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from xdist.dsession import DSession
|
||||
from xdist.dsession import DSession, get_default_max_worker_restart
|
||||
from xdist.report import report_collection_diff
|
||||
from xdist.scheduler import EachScheduling, LoadScheduling
|
||||
|
||||
@@ -268,6 +268,24 @@ def test_report_collection_diff_equal():
|
||||
assert report_collection_diff(from_collection, to_collection, 1, 2) is None
|
||||
|
||||
|
||||
def test_default_max_worker_restart():
|
||||
class config:
|
||||
class option:
|
||||
maxworkerrestart = None
|
||||
numprocesses = 0
|
||||
|
||||
assert get_default_max_worker_restart(config) is None
|
||||
|
||||
config.option.numprocesses = 2
|
||||
assert get_default_max_worker_restart(config) == 8
|
||||
|
||||
config.option.maxworkerrestart = "1"
|
||||
assert get_default_max_worker_restart(config) == 1
|
||||
|
||||
config.option.maxworkerrestart = "0"
|
||||
assert get_default_max_worker_restart(config) == 0
|
||||
|
||||
|
||||
def test_report_collection_diff_different():
|
||||
"""Test reporting of different collections."""
|
||||
from_collection = ["aaa", "bbb", "ccc", "YYY"]
|
||||
|
||||
6
tox.ini
6
tox.ini
@@ -2,15 +2,15 @@
|
||||
envlist=
|
||||
linting
|
||||
py{27,34,35,36,37}-pytestlatest
|
||||
py{27,36}-pytest{master,features}
|
||||
py37-pytest{master,features}
|
||||
|
||||
[testenv]
|
||||
passenv = USER USERNAME
|
||||
extras = testing
|
||||
deps =
|
||||
pytestlatest: pytest
|
||||
pytestmaster: git+https://github.com/pytest-dev/pytest.git@master
|
||||
pytestfeatures: git+https://github.com/pytest-dev/pytest.git@features
|
||||
filelock
|
||||
commands=
|
||||
pytest {posargs}
|
||||
|
||||
@@ -24,7 +24,7 @@ commands = pre-commit run --all-files --show-diff-on-failure
|
||||
[testenv:release]
|
||||
changedir=
|
||||
decription = do a release, required posarg of the version number
|
||||
basepython = python3.6
|
||||
basepython = python3.7
|
||||
skipsdist = True
|
||||
usedevelop = True
|
||||
passenv = *
|
||||
|
||||
Reference in New Issue
Block a user