Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
adaa10f285 | ||
|
|
1cd7001647 | ||
|
|
95b660e26a | ||
|
|
7a5efcdb76 | ||
|
|
9e59d07947 | ||
|
|
3799caa4fc | ||
|
|
1e66af6389 | ||
|
|
7674f6b186 | ||
|
|
c83f73e19c | ||
|
|
c874872190 | ||
|
|
e4f36b18f3 | ||
|
|
0cdef59428 | ||
|
|
4bb06e3f74 | ||
|
|
2c9b0b8894 | ||
|
|
b464335c83 | ||
|
|
24b478446a | ||
|
|
d4d52dc933 | ||
|
|
e5c2347934 | ||
|
|
577418f28c | ||
|
|
5c46cdf62d | ||
|
|
493ba6cb1d | ||
|
|
d9bb158085 | ||
|
|
0175605c57 | ||
|
|
3ed405f22f | ||
|
|
7b9546b89b | ||
|
|
542111d272 | ||
|
|
2adf810e5e | ||
|
|
f8e138b986 | ||
|
|
469c8c50d0 | ||
|
|
79f1b6dab2 | ||
|
|
75e61d86b7 | ||
|
|
20a1b9ef11 | ||
|
|
a54f531701 | ||
|
|
4389843dcb |
46
.travis.yml
46
.travis.yml
@@ -1,5 +1,16 @@
|
||||
sudo: false
|
||||
language: python
|
||||
|
||||
notifications:
|
||||
irc:
|
||||
channels:
|
||||
- 'chat.freenode.net#pytest'
|
||||
on_success: change
|
||||
on_failure: change
|
||||
skip_join: true
|
||||
email:
|
||||
- pytest-commit@python.org
|
||||
|
||||
python:
|
||||
- '2.6'
|
||||
- '2.7'
|
||||
@@ -10,32 +21,39 @@ env:
|
||||
- TOXENV=py-pytest30
|
||||
- TOXENV=py-pytest31
|
||||
- TOXENV=py-pytest32
|
||||
|
||||
install: pip install tox setuptools_scm
|
||||
matrix:
|
||||
script: tox
|
||||
|
||||
jobs:
|
||||
include:
|
||||
# note: please use "tox --listenvs" to populate the build matrix
|
||||
- stage: test
|
||||
# python x env above are already included into this stage
|
||||
- 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
|
||||
- python: "3.6"
|
||||
env: TOXENV=flakes
|
||||
- python: "3.6"
|
||||
env: TOXENV=readme
|
||||
|
||||
script: tox
|
||||
notifications:
|
||||
irc:
|
||||
channels:
|
||||
- chat.freenode.net#pytest
|
||||
on_success: change
|
||||
on_failure: change
|
||||
skip_join: true
|
||||
email:
|
||||
- pytest-commit@python.org
|
||||
deploy:
|
||||
- stage: deploy
|
||||
python: '3.6'
|
||||
env:
|
||||
install: pip install -U setuptools setuptools_scm
|
||||
script: skip
|
||||
deploy:
|
||||
provider: pypi
|
||||
user: ronny
|
||||
distributions: sdist bdist_wheel
|
||||
skip_upload_docs: true
|
||||
password:
|
||||
secure: cxmSDho5d+PYKEM4ZCg8ms1P4lzhYkrw6fEOm2HtTcsuCyY6aZMSgImWAnEYbJHSkdzgcxlXK9UKJ9B0YenXmBCkAr7UjdnpNXNmkySr0sYzlH/sfqt/dDATCHFaRKxnkOSOVywaDYhT9n8YudbXI77pXwD12i/CeSSJDbHhsu0JYUfAcb+D6YjRYoA2SEGCnzSzg+gDDfwXZx4ZiODCGLVwieNp1klCg88YROUE1BaYYNuUOONvfXX8+TWowbCF6ChH1WL/bZ49OStEYQNuYxZQZr4yClIqu9VJbchrU8j860K9ott2kkGTgfB/dDrQB/XncBubyIX9ikzCQAmmBXWAI3eyvWLPDk2Jz7kW2l2RT7syct80tCq3JhvQ1qdwr5ap7siocTLgnBW0tF4tkHSTFN3510fkc43npnp6FThebESQpnI24vqpwJ9hI/kW5mYi014Og2E/cpCXnz2XO8iZPDbqAMQpDsqEQoyhfGNgPTGp4K30TxRtwZBI5hHhDKnnR16fXtRgt1gYPvz/peUQvvpOm4JzIzGXPzluuutpnCBy75v5+oiwT3YRrLL/Meims9FtDDXL3qQubAE/ezIOOpm0N5XXV8DxIom8EN71yq5ab1tqhM+tBX7owRjy4FR4If2Q8feBdmTuh26DIQt/y+qSG8VkB9Sw/JCjc7c=
|
||||
on:
|
||||
tags: true
|
||||
distributions: sdist bdist_wheel
|
||||
repo: pytest-dev/pytest-xdist
|
||||
|
||||
@@ -1,3 +1,49 @@
|
||||
pytest-xdist 1.20.1 (2017-10-05)
|
||||
================================
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Fix hang when all worker nodes crash and restart limit is reached (`#45
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/45>`_)
|
||||
|
||||
- Fix issue where the -n option would still run distributed tests when pytest
|
||||
was run with the --collect-only option (`#5
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/5>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.20.0 (2017-08-17)
|
||||
================================
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- ``xdist`` now supports tests to log results multiple times, improving
|
||||
integration with plugins which require it like `pytest-rerunfailures
|
||||
<https://github.com/gocept/pytest-rerunfailures>`_ and `flaky
|
||||
<https://pypi.python.org/pypi/flaky>`_. (`#206 <https://github.com/pytest-
|
||||
dev/pytest-xdist/issues/206>`_)
|
||||
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Fix issue where tests were being incorrectly identified if a worker crashed
|
||||
during the ``teardown`` stage of the test. (`#124 <https://github.com/pytest-
|
||||
dev/pytest-xdist/issues/124>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.19.1 (2017-08-10)
|
||||
================================
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Fix crash when transferring internal pytest warnings from workers to the
|
||||
master node. (`#214 <https://github.com/pytest-dev/pytest-
|
||||
xdist/issues/214>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.19.0 (2017-08-09)
|
||||
================================
|
||||
|
||||
@@ -218,7 +264,7 @@ Improved Documentation
|
||||
in master. Thanks Aron Curzon.
|
||||
|
||||
- fix pytest issue419 by sending/receiving indices into the test
|
||||
collection instead of node ids (which are not neccessarily unique
|
||||
collection instead of node ids (which are not necessarily unique
|
||||
for functions parametrized with duplicate values)
|
||||
|
||||
- send multiple "to test" indices in one network message to a slave
|
||||
|
||||
@@ -262,6 +262,17 @@ class TestDistribution:
|
||||
child.close()
|
||||
# assert ret == 2
|
||||
|
||||
def test_dist_with_collectonly(self, testdir):
|
||||
p1 = testdir.makepyfile("""
|
||||
def test_ok():
|
||||
pass
|
||||
""")
|
||||
result = testdir.runpytest(p1, "-n1", "--collect-only")
|
||||
assert result.ret == 0
|
||||
result.stdout.fnmatch_lines([
|
||||
"*collected 1 item*",
|
||||
])
|
||||
|
||||
|
||||
class TestDistEach:
|
||||
def test_simple(self, testdir):
|
||||
@@ -340,18 +351,28 @@ class TestTerminalReporting:
|
||||
])
|
||||
|
||||
@pytest.mark.parametrize('n', ['-n0', '-n1'])
|
||||
def test_logwarning(self, testdir, n):
|
||||
@pytest.mark.parametrize('warn_type', ['pytest', 'builtin'])
|
||||
def test_logwarning(self, testdir, n, warn_type):
|
||||
from pkg_resources import parse_version
|
||||
if parse_version(pytest.__version__) < parse_version('3.1'):
|
||||
pytest.skip('pytest warnings requires >= 3.1')
|
||||
|
||||
if warn_type == 'builtin':
|
||||
warn_code = """warnings.warn(UserWarning('this is a warning'))"""
|
||||
elif warn_type == 'pytest':
|
||||
warn_code = """request.config.warn('', 'this is a warning',
|
||||
fslocation=py.path.local())"""
|
||||
else:
|
||||
assert False
|
||||
testdir.makepyfile("""
|
||||
import warnings
|
||||
def test_func():
|
||||
warnings.warn('this is a warning')
|
||||
""")
|
||||
import warnings, py
|
||||
def test_func(request):
|
||||
{warn_code}
|
||||
""".format(warn_code=warn_code))
|
||||
result = testdir.runpytest(n)
|
||||
result.stdout.fnmatch_lines([
|
||||
"*this is a warning*",
|
||||
"*1 passed, 1 warnings*",
|
||||
])
|
||||
|
||||
|
||||
@@ -461,18 +482,60 @@ def test_funcarg_teardown_failure(testdir):
|
||||
assert result.ret
|
||||
|
||||
|
||||
def test_crashing_item(testdir):
|
||||
@pytest.mark.parametrize('when', ['setup', 'call', 'teardown'])
|
||||
def test_crashing_item(testdir, when):
|
||||
"""Ensure crashing item is correctly reported during all testing stages"""
|
||||
code = dict(setup='', call='', teardown='')
|
||||
code[when] = 'py.process.kill(os.getpid())'
|
||||
p = testdir.makepyfile("""
|
||||
import py
|
||||
import os
|
||||
def test_crash():
|
||||
py.process.kill(os.getpid())
|
||||
def test_noncrash():
|
||||
import py
|
||||
import pytest
|
||||
|
||||
@pytest.fixture
|
||||
def fix():
|
||||
{setup}
|
||||
yield
|
||||
{teardown}
|
||||
|
||||
def test_crash(fix):
|
||||
{call}
|
||||
pass
|
||||
""")
|
||||
|
||||
def test_ok():
|
||||
pass
|
||||
""".format(**code))
|
||||
passes = 2 if when == 'teardown' else 1
|
||||
result = testdir.runpytest("-n2", p)
|
||||
result.stdout.fnmatch_lines([
|
||||
"*crashed*test_crash*", "*1 failed*1 passed*"
|
||||
"*crashed*test_crash*",
|
||||
"*1 failed*%d passed*" % passes,
|
||||
])
|
||||
|
||||
|
||||
def test_multiple_log_reports(testdir):
|
||||
"""
|
||||
Ensure that pytest-xdist supports plugins that emit multiple logreports
|
||||
(#206).
|
||||
Inspired by pytest-rerunfailures.
|
||||
"""
|
||||
testdir.makeconftest("""
|
||||
from _pytest.runner import runtestprotocol
|
||||
def pytest_runtest_protocol(item, nextitem):
|
||||
item.ihook.pytest_runtest_logstart(nodeid=item.nodeid,
|
||||
location=item.location)
|
||||
reports = runtestprotocol(item, nextitem=nextitem)
|
||||
for report in reports:
|
||||
item.ihook.pytest_runtest_logreport(report=report)
|
||||
return True
|
||||
""")
|
||||
testdir.makepyfile("""
|
||||
def test():
|
||||
pass
|
||||
""")
|
||||
result = testdir.runpytest("-n1")
|
||||
result.stdout.fnmatch_lines([
|
||||
"*2 passed*",
|
||||
])
|
||||
|
||||
|
||||
@@ -649,6 +712,17 @@ class TestNodeFailure:
|
||||
"*2 failed*2 passed*",
|
||||
])
|
||||
|
||||
def test_max_slave_restart_die(self, testdir):
|
||||
f = testdir.makepyfile("""
|
||||
import os
|
||||
os._exit(1)
|
||||
""")
|
||||
res = testdir.runpytest(f, '-n4', '--max-slave-restart=0')
|
||||
res.stdout.fnmatch_lines([
|
||||
"*Unexpectedly no active workers*",
|
||||
"*INTERNALERROR*"
|
||||
])
|
||||
|
||||
def test_disable_restart(self, testdir):
|
||||
f = testdir.makepyfile("""
|
||||
import os
|
||||
|
||||
@@ -44,6 +44,36 @@ def test_auto_detect_cpus(testdir, monkeypatch):
|
||||
assert config.getoption('numprocesses') == 99
|
||||
|
||||
|
||||
def test_boxed_with_collect_only(testdir):
|
||||
from xdist.plugin import pytest_cmdline_main as check_options
|
||||
config = testdir.parseconfigure("-n1", "--boxed")
|
||||
check_options(config)
|
||||
assert config.option.forked
|
||||
|
||||
config = testdir.parseconfigure("-n1", "--collect-only")
|
||||
check_options(config)
|
||||
assert not config.option.forked
|
||||
|
||||
config = testdir.parseconfigure("-n1", "--boxed", "--collect-only")
|
||||
check_options(config)
|
||||
assert config.option.forked
|
||||
|
||||
|
||||
def test_dsession_with_collect_only(testdir):
|
||||
from xdist.plugin import pytest_cmdline_main as check_options
|
||||
from xdist.plugin import pytest_configure as configure
|
||||
|
||||
config = testdir.parseconfigure("-n1")
|
||||
check_options(config)
|
||||
configure(config)
|
||||
assert config.pluginmanager.hasplugin("dsession")
|
||||
|
||||
config = testdir.parseconfigure("-n1", "--collect-only")
|
||||
check_options(config)
|
||||
configure(config)
|
||||
assert not config.pluginmanager.hasplugin("dsession")
|
||||
|
||||
|
||||
class TestDistOptions:
|
||||
def test_getxspecs(self, testdir):
|
||||
config = testdir.parseconfigure("--tx=popen", "--tx", "ssh=xyz")
|
||||
|
||||
3
tox.ini
3
tox.ini
@@ -3,6 +3,7 @@
|
||||
envlist=
|
||||
py{26,27,34,35,36}-pytest{30,31,32}
|
||||
py{27,36}-pytest{30,31,32}-pexpect
|
||||
py{27,36}-pytest{master,features}
|
||||
flakes
|
||||
readme
|
||||
|
||||
@@ -17,6 +18,8 @@ deps =
|
||||
pytest30: pytest~=3.0.5
|
||||
pytest31: pytest~=3.1.0
|
||||
pytest32: pytest~=3.2.0
|
||||
pytestmaster: git+https://github.com/pytest-dev/pytest.git@master
|
||||
pytestfeatures: git+https://github.com/pytest-dev/pytest.git@features
|
||||
pexpect: pexpect
|
||||
platform=
|
||||
pexpect: linux|darwin
|
||||
|
||||
@@ -120,6 +120,10 @@ class DSession:
|
||||
def loop_once(self):
|
||||
"""Process one callback from one of the slaves."""
|
||||
while 1:
|
||||
if not self._active_nodes:
|
||||
# If everything has died stop looping
|
||||
self.triggershutdown()
|
||||
raise RuntimeError("Unexpectedly no active workers available")
|
||||
try:
|
||||
eventcall = self.queue.get(timeout=2.0)
|
||||
break
|
||||
@@ -230,18 +234,19 @@ class DSession:
|
||||
nodeid=nodeid, location=location)
|
||||
|
||||
def slave_testreport(self, node, rep):
|
||||
"""Emitted when a node calls the pytest_runtest_logreport hook.
|
||||
|
||||
If the node indicates it is finished with a test item, remove
|
||||
the item from the pending list in the scheduler.
|
||||
"""
|
||||
if rep.when == "call" or (rep.when == "setup" and not rep.passed):
|
||||
self.sched.mark_test_complete(node, rep.item_index, rep.duration)
|
||||
# self.report_line("testreport %s: %s" %(rep.id, rep.status))
|
||||
"""Emitted when a node calls the pytest_runtest_logreport hook."""
|
||||
rep.node = node
|
||||
self.config.hook.pytest_runtest_logreport(report=rep)
|
||||
self._handlefailures(rep)
|
||||
|
||||
def slave_runtest_protocol_complete(self, node, item_index, duration):
|
||||
"""
|
||||
Emitted when a node fires the 'runtest_protocol_complete' event,
|
||||
signalling that a test has completed the runtestprotocol and should be
|
||||
removed from the pending list in the scheduler.
|
||||
"""
|
||||
self.sched.mark_test_complete(node, item_index, duration)
|
||||
|
||||
def slave_collectreport(self, node, rep):
|
||||
"""Emitted when a node calls the pytest_collectreport hook."""
|
||||
if rep.failed:
|
||||
|
||||
@@ -91,7 +91,7 @@ def pytest_addhooks(pluginmanager):
|
||||
|
||||
@pytest.mark.trylast
|
||||
def pytest_configure(config):
|
||||
if config.getoption("dist") != "no":
|
||||
if config.getoption("dist") != "no" and not config.getvalue("collectonly"):
|
||||
from xdist.dsession import DSession
|
||||
session = DSession(config)
|
||||
config.pluginmanager.register(session, "dsession")
|
||||
@@ -115,7 +115,7 @@ def pytest_cmdline_main(config):
|
||||
if val("dist") != "no":
|
||||
if usepdb:
|
||||
raise pytest.UsageError(
|
||||
"--pdb incompatible with distributing tests.")
|
||||
"--pdb is incompatible with distributing tests; try using -n0.") # noqa: E501
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# fixtures
|
||||
@@ -124,6 +124,9 @@ def pytest_cmdline_main(config):
|
||||
|
||||
@pytest.fixture(scope="session")
|
||||
def worker_id(request):
|
||||
"""Return the id of the current worker ('gw0', 'gw1', etc) or 'master'
|
||||
if running on the master node.
|
||||
"""
|
||||
if hasattr(request.config, 'slaveinput'):
|
||||
return request.config.slaveinput['slaveid']
|
||||
else:
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
import sys
|
||||
import os
|
||||
import time
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -59,23 +60,29 @@ class SlaveInteractor:
|
||||
self.log("items to run:", torun)
|
||||
# only run if we have an item and a next item
|
||||
while len(torun) >= 2:
|
||||
self.run_tests(torun)
|
||||
self.run_one_test(torun)
|
||||
if name == "shutdown":
|
||||
if torun:
|
||||
self.run_tests(torun)
|
||||
self.run_one_test(torun)
|
||||
break
|
||||
return True
|
||||
|
||||
def run_tests(self, torun):
|
||||
def run_one_test(self, torun):
|
||||
items = self.session.items
|
||||
self.item_index = torun.pop(0)
|
||||
item = items[self.item_index]
|
||||
if torun:
|
||||
nextitem = items[torun[0]]
|
||||
else:
|
||||
nextitem = None
|
||||
|
||||
start = time.time()
|
||||
self.config.hook.pytest_runtest_protocol(
|
||||
item=items[self.item_index],
|
||||
item=item,
|
||||
nextitem=nextitem)
|
||||
duration = time.time() - start
|
||||
self.sendevent("runtest_protocol_complete", item_index=self.item_index,
|
||||
duration=duration)
|
||||
|
||||
def pytest_collection_finish(self, session):
|
||||
self.sendevent(
|
||||
@@ -99,7 +106,7 @@ class SlaveInteractor:
|
||||
|
||||
def pytest_logwarning(self, message, code, nodeid, fslocation):
|
||||
self.sendevent("logwarning", message=message, code=code, nodeid=nodeid,
|
||||
fslocation=fslocation)
|
||||
fslocation=str(fslocation))
|
||||
|
||||
|
||||
def serialize_report(rep):
|
||||
|
||||
@@ -315,6 +315,8 @@ class SlaveController(object):
|
||||
self.notify_inproc(eventname, node=self, rep=rep)
|
||||
elif eventname == "collectionfinish":
|
||||
self.notify_inproc(eventname, node=self, ids=kwargs['ids'])
|
||||
elif eventname == "runtest_protocol_complete":
|
||||
self.notify_inproc(eventname, node=self, **kwargs)
|
||||
elif eventname == "logwarning":
|
||||
self.notify_inproc(eventname, message=kwargs['message'],
|
||||
code=kwargs['code'], nodeid=kwargs['nodeid'],
|
||||
@@ -344,7 +346,7 @@ def unserialize_report(name, reportdict):
|
||||
ReprTraceback
|
||||
)
|
||||
if reportdict['longrepr']:
|
||||
if 'reprcrash' and 'reprtraceback' in reportdict['longrepr']:
|
||||
if 'reprcrash' in reportdict['longrepr'] and 'reprtraceback' in reportdict['longrepr']:
|
||||
|
||||
reprtraceback = reportdict['longrepr']['reprtraceback']
|
||||
reprcrash = reportdict['longrepr']['reprcrash']
|
||||
|
||||
Reference in New Issue
Block a user