Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6c68478997 | ||
|
|
0181829ba7 | ||
|
|
9b767a8dcb | ||
|
|
449e6c2e00 | ||
|
|
4dc86a1dad | ||
|
|
c4c4dab53f | ||
|
|
17978f3bea | ||
|
|
9b2163f028 | ||
|
|
3f09e158be | ||
|
|
0d19e7f22b | ||
|
|
aedad85e35 | ||
|
|
a020c9509d | ||
|
|
efce50fe6a | ||
|
|
db1fb683cf | ||
|
|
28d60f94f3 | ||
|
|
ed9f25a0d2 | ||
|
|
cb8b161d36 | ||
|
|
cec33cca8a | ||
|
|
c6f2fdcc31 | ||
|
|
8b79d909ea | ||
|
|
2b0dc3f83a | ||
|
|
ed2db3d03a | ||
|
|
d3229af3da | ||
|
|
fad312fdb7 | ||
|
|
d4f977f3b7 | ||
|
|
5889e4c229 | ||
|
|
239065810e | ||
|
|
bf0645ad35 | ||
|
|
cf067a86d7 | ||
|
|
58f7291a99 | ||
|
|
2eb1002781 | ||
|
|
635d3d02cb |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -30,3 +30,4 @@ pytestdebug.log
|
||||
.tox/
|
||||
.cache/
|
||||
.eggs/
|
||||
.idea/
|
||||
|
||||
@@ -12,7 +12,6 @@ notifications:
|
||||
- pytest-commit@python.org
|
||||
|
||||
python:
|
||||
- '2.6'
|
||||
- '2.7'
|
||||
- '3.4'
|
||||
- '3.5'
|
||||
@@ -21,6 +20,7 @@ env:
|
||||
- TOXENV=py-pytest30
|
||||
- TOXENV=py-pytest31
|
||||
- TOXENV=py-pytest32
|
||||
- TOXENV=py-pytest33
|
||||
|
||||
install: pip install tox setuptools_scm
|
||||
script: tox
|
||||
|
||||
@@ -1,3 +1,40 @@
|
||||
pytest-xdist 1.22.0 (2018-01-11)
|
||||
================================
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- Add support for the ``pytest_runtest_logfinish`` hook which will be released
|
||||
in pytest 3.4. (`#266
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/266>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.21.0 (2017-12-22)
|
||||
================================
|
||||
|
||||
Deprecations and Removals
|
||||
-------------------------
|
||||
|
||||
- Drop support for EOL Python 2.6. (`#259
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/259>`_)
|
||||
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- New ``--dist=loadfile`` option which load-distributes test to workers grouped
|
||||
by the file the tests live in. (`#242
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/242>`_)
|
||||
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Fix accidental mutation of test report during serialization causing longrepr
|
||||
string-ification to break. (`#241
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/241>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.20.1 (2017-10-05)
|
||||
================================
|
||||
|
||||
|
||||
29
README.rst
29
README.rst
@@ -1,15 +1,23 @@
|
||||
|
||||
|
||||
.. image:: http://img.shields.io/pypi/v/pytest-xdist.svg
|
||||
:alt: PyPI version
|
||||
:target: https://pypi.python.org/pypi/pytest-xdist
|
||||
|
||||
.. image:: https://img.shields.io/pypi/pyversions/pytest-xdist.svg
|
||||
:alt: Python versions
|
||||
:target: https://pypi.python.org/pypi/pytest-xdist
|
||||
|
||||
.. image:: https://anaconda.org/conda-forge/pytest-xdist/badges/version.svg
|
||||
:alt: Anaconda version
|
||||
:target: https://anaconda.org/conda-forge/pytest-xdist
|
||||
|
||||
.. image:: https://travis-ci.org/pytest-dev/pytest-xdist.svg?branch=master
|
||||
:alt: Travis CI build status
|
||||
:target: https://travis-ci.org/pytest-dev/pytest-xdist
|
||||
|
||||
.. image:: https://ci.appveyor.com/api/projects/status/56eq1a1avd4sdd7e/branch/master?svg=true
|
||||
:alt: AppVeyor build status
|
||||
:target: https://ci.appveyor.com/project/pytestbot/pytest-xdist
|
||||
|
||||
xdist: pytest distributed testing plugin
|
||||
@@ -36,6 +44,9 @@ program source code to the remote place. All test results
|
||||
are reported back and displayed to your local terminal.
|
||||
You may specify different Python versions and interpreters.
|
||||
|
||||
If you would like to know how pytest-xdist works under the covers, checkout
|
||||
`OVERVIEW <https://github.com/pytest-dev/pytest-xdist/blob/master/OVERVIEW.md>`_.
|
||||
|
||||
|
||||
Installation
|
||||
-----------------------
|
||||
@@ -229,7 +240,7 @@ You can also add default environments like this:
|
||||
.. code-block:: ini
|
||||
|
||||
[pytest]
|
||||
addopts = --tx ssh=myhost//python=python2.5 --tx ssh=myhost//python=python2.6
|
||||
addopts = --tx ssh=myhost//python=python2.5 --tx ssh=myhost//python=python3.6
|
||||
|
||||
and then just type::
|
||||
|
||||
@@ -313,6 +324,22 @@ the same worker ``gw0``, while the test methods from classes ``TestHDF`` and
|
||||
Currently the groupings can't be customized, with grouping by class takes
|
||||
priority over grouping by module.
|
||||
|
||||
Sending tests to the same worker based on their file
|
||||
++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
*New in version 1.21.*
|
||||
|
||||
.. note::
|
||||
This is an **experimental** feature: the actual functionality will
|
||||
likely stay the same, but the CLI might change slightly in future versions.
|
||||
|
||||
You can send tests to the same worker grouped by their filename by using the
|
||||
``--dist=loadfile`` option, so tests of the same file are guaranteed to run
|
||||
in the same worker.
|
||||
|
||||
Using the example in the previous section, all tests from ``test_container.py`` will
|
||||
run in the same worker, as well as the tests in ``test_io.py``.
|
||||
|
||||
|
||||
Specifying "rsync" dirs in an ini-file
|
||||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
15
appveyor.yml
15
appveyor.yml
@@ -1,18 +1,17 @@
|
||||
environment:
|
||||
matrix:
|
||||
# note: please use "tox --listenvs" to populate the build matrix
|
||||
- TOXENV: "py26-pytest30"
|
||||
- TOXENV: "py27-pytest30"
|
||||
- TOXENV: "py34-pytest30"
|
||||
- TOXENV: "py35-pytest30"
|
||||
- TOXENV: "py36-pytest30"
|
||||
- TOXENV: "py27-pytest30-pexpect"
|
||||
- TOXENV: "py35-pytest30-pexpect"
|
||||
- TOXENV: "py27-pytest33"
|
||||
- TOXENV: "py34-pytest33"
|
||||
- TOXENV: "py35-pytest33"
|
||||
- TOXENV: "py36-pytest33"
|
||||
- TOXENV: "py27-pytest33-pexpect"
|
||||
- TOXENV: "py36-pytest33-pexpect"
|
||||
- TOXENV: "flakes"
|
||||
- TOXENV: "readme"
|
||||
|
||||
install:
|
||||
- C:\Python35\python -m pip install tox setuptools_scm
|
||||
- C:\Python35\python -m pip install -U tox setuptools_scm pip
|
||||
|
||||
build: false # Not a C# project, build stuff at the test step instead.
|
||||
|
||||
|
||||
11
setup.py
11
setup.py
@@ -1,12 +1,7 @@
|
||||
from sys import version_info
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
install_requires = ['execnet>=1.1', 'pytest>=3.0.0', 'pytest-forked']
|
||||
|
||||
if version_info < (2, 7):
|
||||
install_requires.append('ordereddict')
|
||||
|
||||
|
||||
setup(
|
||||
name="pytest-xdist",
|
||||
@@ -27,6 +22,7 @@ setup(
|
||||
],
|
||||
},
|
||||
zip_safe=False,
|
||||
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
||||
install_requires=install_requires,
|
||||
setup_requires=['setuptools_scm'],
|
||||
classifiers=[
|
||||
@@ -41,6 +37,11 @@ setup(
|
||||
'Topic :: Software Development :: Quality Assurance',
|
||||
'Topic :: Utilities',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
],
|
||||
)
|
||||
|
||||
@@ -375,6 +375,25 @@ class TestTerminalReporting:
|
||||
"*1 passed, 1 warnings*",
|
||||
])
|
||||
|
||||
def test_logfinish_hook(self, testdir):
|
||||
"""Ensure the pytest_runtest_logfinish hook is being properly handled"""
|
||||
from _pytest import hookspec
|
||||
if not hasattr(hookspec, 'pytest_runtest_logfinish'):
|
||||
pytest.skip('test requires pytest_runtest_logfinish hook in pytest (3.4+)')
|
||||
|
||||
testdir.makeconftest("""
|
||||
def pytest_runtest_logfinish():
|
||||
print('pytest_runtest_logfinish hook called')
|
||||
""")
|
||||
testdir.makepyfile("""
|
||||
def test_func():
|
||||
pass
|
||||
""")
|
||||
result = testdir.runpytest("-n1", "-s")
|
||||
result.stdout.fnmatch_lines([
|
||||
"*pytest_runtest_logfinish hook called*",
|
||||
])
|
||||
|
||||
|
||||
def test_teardownfails_one_function(testdir):
|
||||
p = testdir.makepyfile("""
|
||||
@@ -755,9 +774,9 @@ def test_worker_id_fixture(testdir, n):
|
||||
with open(fname) as f:
|
||||
worker_ids.add(f.read().strip())
|
||||
if n == 0:
|
||||
assert worker_ids == set(['master'])
|
||||
assert worker_ids == {'master'}
|
||||
else:
|
||||
assert worker_ids == set(['gw0', 'gw1'])
|
||||
assert worker_ids == {'gw0', 'gw1'}
|
||||
|
||||
|
||||
@pytest.mark.parametrize('tb',
|
||||
@@ -856,11 +875,72 @@ class TestLoadScope:
|
||||
'test_a.py::TestB', result.outlines) in ({'gw0': 10}, {'gw1': 10})
|
||||
|
||||
|
||||
class TestFileScope:
|
||||
|
||||
def test_by_module(self, testdir):
|
||||
test_file = """
|
||||
import pytest
|
||||
class TestA:
|
||||
@pytest.mark.parametrize('i', range(10))
|
||||
def test(self, i):
|
||||
pass
|
||||
|
||||
class TestB:
|
||||
@pytest.mark.parametrize('i', range(10))
|
||||
def test(self, i):
|
||||
pass
|
||||
"""
|
||||
testdir.makepyfile(
|
||||
test_a=test_file,
|
||||
test_b=test_file,
|
||||
)
|
||||
result = testdir.runpytest('-n2', '--dist=loadfile', '-v')
|
||||
test_a_workers_and_test_count = get_workers_and_test_count_by_prefix(
|
||||
'test_a.py::TestA', result.outlines)
|
||||
test_b_workers_and_test_count = get_workers_and_test_count_by_prefix(
|
||||
'test_b.py::TestB', result.outlines)
|
||||
|
||||
assert test_a_workers_and_test_count in ({'gw0': 10}, {'gw1': 0}) or \
|
||||
test_a_workers_and_test_count in ({'gw0': 0}, {'gw1': 10})
|
||||
assert test_b_workers_and_test_count in ({'gw0': 10}, {'gw1': 0}) or \
|
||||
test_b_workers_and_test_count in ({'gw0': 0}, {'gw1': 10})
|
||||
|
||||
def test_by_class(self, testdir):
|
||||
testdir.makepyfile(test_a="""
|
||||
import pytest
|
||||
class TestA:
|
||||
@pytest.mark.parametrize('i', range(10))
|
||||
def test(self, i):
|
||||
pass
|
||||
|
||||
class TestB:
|
||||
@pytest.mark.parametrize('i', range(10))
|
||||
def test(self, i):
|
||||
pass
|
||||
""")
|
||||
result = testdir.runpytest('-n2', '--dist=loadfile', '-v')
|
||||
test_a_workers_and_test_count = get_workers_and_test_count_by_prefix(
|
||||
'test_a.py::TestA', result.outlines)
|
||||
test_b_workers_and_test_count = get_workers_and_test_count_by_prefix(
|
||||
'test_a.py::TestB', result.outlines)
|
||||
|
||||
assert test_a_workers_and_test_count in ({'gw0': 10}, {'gw1': 0}) or \
|
||||
test_a_workers_and_test_count in ({'gw0': 0}, {'gw1': 10})
|
||||
assert test_b_workers_and_test_count in ({'gw0': 10}, {'gw1': 0}) or \
|
||||
test_b_workers_and_test_count in ({'gw0': 0}, {'gw1': 10})
|
||||
|
||||
|
||||
def parse_tests_and_workers_from_output(lines):
|
||||
result = []
|
||||
for line in lines:
|
||||
# example match: "[gw0] PASSED test_a.py::test[7]"
|
||||
m = re.match(r'\[(gw\d)\]\s(.*?)\s(.*::.*)', line.strip())
|
||||
m = re.match(r'''
|
||||
\[(gw\d)\] # worker
|
||||
\s*
|
||||
(?:\[\s*\d+%\])? # progress indicator (pytest >=3.3)
|
||||
\s(.*?) # status string ("PASSED")
|
||||
\s(.*::.*) # nodeid
|
||||
''', line.strip(), re.VERBOSE)
|
||||
if m:
|
||||
worker, status, nodeid = m.groups()
|
||||
result.append((worker, status, nodeid))
|
||||
|
||||
@@ -20,13 +20,13 @@ pytest_plugins = "pytester"
|
||||
@pytest.fixture(autouse=True)
|
||||
def _divert_atexit(request, monkeypatch):
|
||||
import atexit
|
||||
l = []
|
||||
finalizers = []
|
||||
|
||||
def finish():
|
||||
while l:
|
||||
l.pop()()
|
||||
while finalizers:
|
||||
finalizers.pop()()
|
||||
|
||||
monkeypatch.setattr(atexit, "register", l.append)
|
||||
monkeypatch.setattr(atexit, "register", finalizers.append)
|
||||
request.addfinalizer(finish)
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ def pytest_addoption(parser):
|
||||
parser.addoption('--gx',
|
||||
action="append",
|
||||
dest="gspecs",
|
||||
help=("add a global test environment, XSpec-syntax. "))
|
||||
help="add a global test environment, XSpec-syntax. ")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
||||
@@ -126,7 +126,7 @@ class TestLoadScheduling:
|
||||
sched.add_node(MockNode())
|
||||
sched.add_node(MockNode())
|
||||
node1, node2 = sched.nodes
|
||||
col = ["xyz"] * (6)
|
||||
col = ["xyz"] * 6
|
||||
sched.add_node_collection(node1, col)
|
||||
sched.add_node_collection(node2, col)
|
||||
sched.schedule()
|
||||
|
||||
@@ -83,10 +83,10 @@ class TestStatRecorder:
|
||||
tmp = tmpdir
|
||||
sd = StatRecorder([tmp])
|
||||
|
||||
l = [True, False]
|
||||
monkeypatch.setattr(StatRecorder, 'check', lambda self: l.pop())
|
||||
ret_values = [True, False]
|
||||
monkeypatch.setattr(StatRecorder, 'check', lambda self: ret_values.pop())
|
||||
sd.waitonchange(checkinterval=0.2)
|
||||
assert not l
|
||||
assert not ret_values
|
||||
|
||||
|
||||
class TestRemoteControl:
|
||||
|
||||
@@ -79,6 +79,21 @@ def test_remoteinitconfig(testdir):
|
||||
|
||||
|
||||
class TestReportSerialization:
|
||||
def test_xdist_longrepr_to_str_issue_241(self, testdir):
|
||||
testdir.makepyfile("""
|
||||
import os
|
||||
def test_a(): assert False
|
||||
def test_b(): pass
|
||||
""")
|
||||
testdir.makeconftest("""
|
||||
def pytest_runtest_logreport(report):
|
||||
print(report.longrepr)
|
||||
""")
|
||||
res = testdir.runpytest('-n1', '-s')
|
||||
res.stdout.fnmatch_lines([
|
||||
'*1 failed, 1 passed *'
|
||||
])
|
||||
|
||||
def test_xdist_report_longrepr_reprcrash_130(self, testdir):
|
||||
reprec = testdir.inline_runsource("""
|
||||
import py
|
||||
@@ -107,8 +122,6 @@ class TestReportSerialization:
|
||||
assert rep.longrepr.reprtraceback.style \
|
||||
== a.longrepr.reprtraceback.style
|
||||
assert rep.longrepr.sections == a.longrepr.sections
|
||||
assert rep.longrepr.reprtraceback.reprentries \
|
||||
== a.longrepr.reprtraceback.reprentries
|
||||
# Missing section attribute PR171
|
||||
assert added_section in a.longrepr.sections
|
||||
|
||||
@@ -127,14 +140,15 @@ class TestReportSerialization:
|
||||
|
||||
rep_entries = rep.longrepr.reprtraceback.reprentries
|
||||
a_entries = a.longrepr.reprtraceback.reprentries
|
||||
assert rep_entries == a_entries
|
||||
for i in range(len(a_entries)):
|
||||
assert isinstance(rep_entries[i], ReprEntry)
|
||||
assert rep_entries[i].lines == a_entries[i].lines
|
||||
assert rep_entries[i].localssep == a_entries[i].localssep
|
||||
assert rep_entries[i].reprfileloc == a_entries[i].reprfileloc
|
||||
assert rep_entries[i].reprfuncargs == a_entries[i].reprfuncargs
|
||||
assert rep_entries[i].reprlocals == a_entries[i].reprlocals
|
||||
assert rep_entries[i].reprfileloc.lineno == a_entries[i].reprfileloc.lineno
|
||||
assert rep_entries[i].reprfileloc.message == a_entries[i].reprfileloc.message
|
||||
assert rep_entries[i].reprfileloc.path == a_entries[i].reprfileloc.path
|
||||
assert rep_entries[i].reprfuncargs.args == a_entries[i].reprfuncargs.args
|
||||
assert rep_entries[i].reprlocals.lines == a_entries[i].reprlocals.lines
|
||||
assert rep_entries[i].style == a_entries[i].style
|
||||
|
||||
def test_reprentries_serialization_196(self, testdir):
|
||||
@@ -152,7 +166,6 @@ class TestReportSerialization:
|
||||
|
||||
rep_entries = rep.longrepr.reprtraceback.reprentries
|
||||
a_entries = a.longrepr.reprtraceback.reprentries
|
||||
assert rep_entries == a_entries
|
||||
for i in range(len(a_entries)):
|
||||
assert isinstance(rep_entries[i], ReprEntryNative)
|
||||
assert rep_entries[i].lines == a_entries[i].lines
|
||||
|
||||
@@ -50,10 +50,10 @@ class TestNodeManagerPopen:
|
||||
assert gm.specs[0].chdir is None
|
||||
|
||||
def test_default_chdir(self, config):
|
||||
l = ["ssh=noco", "socket=xyz"]
|
||||
for spec in NodeManager(config, l).specs:
|
||||
specs = ["ssh=noco", "socket=xyz"]
|
||||
for spec in NodeManager(config, specs).specs:
|
||||
assert spec.chdir == "pyexecnetcache"
|
||||
for spec in NodeManager(config, l, defaultchdir="abc").specs:
|
||||
for spec in NodeManager(config, specs, defaultchdir="abc").specs:
|
||||
assert spec.chdir == "abc"
|
||||
|
||||
def test_popen_makegateway_events(self, config, hookrecorder,
|
||||
@@ -89,10 +89,10 @@ class TestNodeManagerPopen:
|
||||
pass
|
||||
|
||||
gw.remote_exec = pseudoexec
|
||||
l = []
|
||||
notifications = []
|
||||
for gw in hm.group:
|
||||
hm.rsync(gw, source, notify=lambda *args: l.append(args))
|
||||
assert not l
|
||||
hm.rsync(gw, source, notify=lambda *args: notifications.append(args))
|
||||
assert not notifications
|
||||
hm.teardown_nodes()
|
||||
assert not len(hm.group)
|
||||
assert "sys.path.insert" in gw.remote_exec.args[0]
|
||||
@@ -102,11 +102,11 @@ class TestNodeManagerPopen:
|
||||
hm = NodeManager(config, ["popen//chdir=%s" % dest] * 1)
|
||||
hm.setup_nodes(None)
|
||||
source.ensure("dir1", "dir2", "hello")
|
||||
l = []
|
||||
notifications = []
|
||||
for gw in hm.group:
|
||||
hm.rsync(gw, source, notify=lambda *args: l.append(args))
|
||||
assert len(l) == 1
|
||||
assert l[0] == ("rsyncrootready", hm.group['gw0'].spec, source)
|
||||
hm.rsync(gw, source, notify=lambda *args: notifications.append(args))
|
||||
assert len(notifications) == 1
|
||||
assert notifications[0] == ("rsyncrootready", hm.group['gw0'].spec, source)
|
||||
hm.teardown_nodes()
|
||||
dest = dest.join(source.basename)
|
||||
assert dest.join("dir1").check()
|
||||
@@ -137,9 +137,9 @@ class TestHRSync:
|
||||
source.ensure(".somedotfile", "moreentries")
|
||||
source.ensure("somedir", "editfile~")
|
||||
syncer = HostRSync(source, ignores=NodeManager.DEFAULT_IGNORES)
|
||||
l = list(source.visit(rec=syncer.filter, fil=syncer.filter))
|
||||
assert len(l) == 3
|
||||
basenames = [x.basename for x in l]
|
||||
files = list(source.visit(rec=syncer.filter, fil=syncer.filter))
|
||||
assert len(files) == 3
|
||||
basenames = [x.basename for x in files]
|
||||
assert 'dir' in basenames
|
||||
assert 'file.txt' in basenames
|
||||
assert 'somedir' in basenames
|
||||
|
||||
5
tox.ini
5
tox.ini
@@ -1,8 +1,8 @@
|
||||
[tox]
|
||||
# if you change the envlist, please update .travis.yml file as well
|
||||
envlist=
|
||||
py{26,27,34,35,36}-pytest{30,31,32}
|
||||
py{27,36}-pytest{30,31,32}-pexpect
|
||||
py{27,34,35,36}-pytest{30,31,32,33}
|
||||
py{27,36}-pytest{30,31,32,33}-pexpect
|
||||
py{27,36}-pytest{master,features}
|
||||
flakes
|
||||
readme
|
||||
@@ -18,6 +18,7 @@ deps =
|
||||
pytest30: pytest~=3.0.5
|
||||
pytest31: pytest~=3.1.0
|
||||
pytest32: pytest~=3.2.0
|
||||
pytest33: pytest~=3.3.0
|
||||
pytestmaster: git+https://github.com/pytest-dev/pytest.git@master
|
||||
pytestfeatures: git+https://github.com/pytest-dev/pytest.git@features
|
||||
pexpect: pexpect
|
||||
|
||||
@@ -6,6 +6,7 @@ from xdist.scheduler import (
|
||||
EachScheduling,
|
||||
LoadScheduling,
|
||||
LoadScopeScheduling,
|
||||
LoadFileScheduling,
|
||||
)
|
||||
|
||||
|
||||
@@ -99,6 +100,7 @@ class DSession:
|
||||
'each': EachScheduling,
|
||||
'load': LoadScheduling,
|
||||
'loadscope': LoadScopeScheduling,
|
||||
'loadfile': LoadFileScheduling,
|
||||
}
|
||||
return schedulers[dist](config, log)
|
||||
|
||||
@@ -233,6 +235,11 @@ class DSession:
|
||||
self.config.hook.pytest_runtest_logstart(
|
||||
nodeid=nodeid, location=location)
|
||||
|
||||
def slave_logfinish(self, node, nodeid, location):
|
||||
"""Emitted when a node calls the pytest_runtest_logfinish hook."""
|
||||
self.config.hook.pytest_runtest_logfinish(
|
||||
nodeid=nodeid, location=location)
|
||||
|
||||
def slave_testreport(self, node, rep):
|
||||
"""Emitted when a node calls the pytest_runtest_logreport hook."""
|
||||
rep.node = node
|
||||
|
||||
@@ -31,7 +31,7 @@ def pytest_addoption(parser):
|
||||
"when crashed (set to zero to disable this feature)")
|
||||
group.addoption(
|
||||
'--dist', metavar="distmode",
|
||||
action="store", choices=['each', 'load', 'loadscope', 'no'],
|
||||
action="store", choices=['each', 'load', 'loadscope', 'loadfile', 'no'],
|
||||
dest="dist", default="no",
|
||||
help=("set mode for distributing tests to exec environments.\n\n"
|
||||
"each: send each test to all available environments.\n\n"
|
||||
@@ -39,6 +39,8 @@ def pytest_addoption(parser):
|
||||
" available environment.\n\n"
|
||||
"loadscope: load balance by sending pending groups of tests in"
|
||||
" the same scope to any available environment.\n\n"
|
||||
"loadfile: load balance by sending test grouped by file"
|
||||
" to any available environment.\n\n"
|
||||
"(default) no: run tests inprocess, don't distribute."))
|
||||
group.addoption(
|
||||
'--tx', dest="tx", action="append", default=[],
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
import sys
|
||||
import os
|
||||
import time
|
||||
|
||||
import _pytest.hookspec
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -93,6 +95,11 @@ class SlaveInteractor:
|
||||
def pytest_runtest_logstart(self, nodeid, location):
|
||||
self.sendevent("logstart", nodeid=nodeid, location=location)
|
||||
|
||||
# the pytest_runtest_logfinish hook was introduced in pytest 3.4
|
||||
if hasattr(_pytest.hookspec, 'pytest_runtest_logfinish'):
|
||||
def pytest_runtest_logfinish(self, nodeid, location):
|
||||
self.sendevent("logfinish", nodeid=nodeid, location=location)
|
||||
|
||||
def pytest_runtest_logreport(self, report):
|
||||
data = serialize_report(report)
|
||||
data["item_index"] = self.item_index
|
||||
@@ -111,18 +118,18 @@ class SlaveInteractor:
|
||||
|
||||
def serialize_report(rep):
|
||||
def disassembled_report(rep):
|
||||
reprtraceback = rep.longrepr.reprtraceback.__dict__
|
||||
reprcrash = rep.longrepr.reprcrash.__dict__
|
||||
reprtraceback = rep.longrepr.reprtraceback.__dict__.copy()
|
||||
reprcrash = rep.longrepr.reprcrash.__dict__.copy()
|
||||
|
||||
new_entries = []
|
||||
for entry in reprtraceback['reprentries']:
|
||||
entry_data = {
|
||||
'type': type(entry).__name__,
|
||||
'data': entry.__dict__,
|
||||
'data': entry.__dict__.copy(),
|
||||
}
|
||||
for key, value in entry_data['data'].items():
|
||||
if hasattr(value, '__dict__'):
|
||||
entry_data['data'][key] = value.__dict__
|
||||
entry_data['data'][key] = value.__dict__.copy()
|
||||
new_entries.append(entry_data)
|
||||
|
||||
reprtraceback['reprentries'] = new_entries
|
||||
@@ -178,10 +185,6 @@ def remote_initconfig(option_dict, args):
|
||||
|
||||
if __name__ == '__channelexec__':
|
||||
channel = channel # noqa
|
||||
# python3.2 is not concurrent import safe, so let's play it safe
|
||||
# https://bitbucket.org/hpk42/pytest/issue/347/pytest-xdist-and-python-32
|
||||
if sys.version_info[:2] == (3, 2):
|
||||
os.environ["PYTHONDONTWRITEBYTECODE"] = "1"
|
||||
slaveinput, args, option_dict = channel.receive()
|
||||
importpath = os.getcwd()
|
||||
sys.path.insert(0, importpath) # XXX only for remote situations
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
from xdist.scheduler.each import EachScheduling # noqa
|
||||
from xdist.scheduler.load import LoadScheduling # noqa
|
||||
from xdist.scheduler.loadscope import LoadScopeScheduling # noqa
|
||||
from xdist.scheduler.filescope import LoadFileScheduling # noqa
|
||||
|
||||
52
xdist/scheduler/filescope.py
Normal file
52
xdist/scheduler/filescope.py
Normal file
@@ -0,0 +1,52 @@
|
||||
from . import LoadScopeScheduling
|
||||
from py.log import Producer
|
||||
|
||||
|
||||
class LoadFileScheduling(LoadScopeScheduling):
|
||||
"""Implement load scheduling across nodes, but grouping test test file.
|
||||
|
||||
This distributes the tests collected across all nodes so each test is run
|
||||
just once. All nodes collect and submit the list of tests and when all
|
||||
collections are received it is verified they are identical collections.
|
||||
Then the collection gets divided up in work units, grouped by test file,
|
||||
and those work units get submitted to nodes. Whenever a node finishes an
|
||||
item, it calls ``.mark_test_complete()`` which will trigger the scheduler
|
||||
to assign more work units if the number of pending tests for the node falls
|
||||
below a low-watermark.
|
||||
|
||||
When created, ``numnodes`` defines how many nodes are expected to submit a
|
||||
collection. This is used to know when all nodes have finished collection.
|
||||
|
||||
This class behaves very much like LoadScopeScheduling, but with a file-level scope.
|
||||
"""
|
||||
|
||||
def __init(self, config, log=None):
|
||||
super(LoadFileScheduling, self).__init__(config, log)
|
||||
if log is None:
|
||||
self.log = Producer('loadfilesched')
|
||||
else:
|
||||
self.log = log.loadfilesched
|
||||
|
||||
def _split_scope(self, nodeid):
|
||||
"""Determine the scope (grouping) of a nodeid.
|
||||
|
||||
There are usually 3 cases for a nodeid::
|
||||
|
||||
example/loadsuite/test/test_beta.py::test_beta0
|
||||
example/loadsuite/test/test_delta.py::Delta1::test_delta0
|
||||
example/loadsuite/epsilon/__init__.py::epsilon.epsilon
|
||||
|
||||
#. Function in a test module.
|
||||
#. Method of a class in a test module.
|
||||
#. Doctest in a function in a package.
|
||||
|
||||
This function will group tests with the scope determined by splitting
|
||||
the first ``::`` from the left. That is, test will be grouped in a
|
||||
single work unit when they reside in the same file.
|
||||
In the above example, scopes will be::
|
||||
|
||||
example/loadsuite/test/test_beta.py
|
||||
example/loadsuite/test/test_delta.py
|
||||
example/loadsuite/epsilon/__init__.py
|
||||
"""
|
||||
return nodeid.split('::', 1)[0]
|
||||
@@ -1,14 +1,9 @@
|
||||
try:
|
||||
from collections import OrderedDict
|
||||
except ImportError:
|
||||
# Support for Python 2.6
|
||||
from ordereddict import OrderedDict
|
||||
from collections import OrderedDict
|
||||
|
||||
from py.log import Producer
|
||||
from _pytest.runner import CollectReport
|
||||
|
||||
from xdist.slavemanage import parse_spec_config
|
||||
from py.log import Producer
|
||||
from xdist.report import report_collection_diff
|
||||
from xdist.slavemanage import parse_spec_config
|
||||
|
||||
|
||||
class LoadScopeScheduling:
|
||||
@@ -373,12 +368,12 @@ class LoadScopeScheduling:
|
||||
extra_nodes = len(self.nodes) - len(self.workqueue)
|
||||
|
||||
if extra_nodes > 0:
|
||||
self.log('Shuting down {} nodes'.format(extra_nodes))
|
||||
self.log('Shuting down {0} nodes'.format(extra_nodes))
|
||||
|
||||
for _ in range(extra_nodes):
|
||||
unused_node, assigned = self.assigned_work.popitem(last=True)
|
||||
|
||||
self.log('Shuting down unused node {}'.format(unused_node))
|
||||
self.log('Shuting down unused node {0}'.format(unused_node))
|
||||
unused_node.shutdown()
|
||||
|
||||
# Assign initial workload
|
||||
|
||||
@@ -186,7 +186,7 @@ class HostRSync(execnet.RSync):
|
||||
def make_reltoroot(roots, args):
|
||||
# XXX introduce/use public API for splitting py.test args
|
||||
splitcode = "::"
|
||||
l = []
|
||||
result = []
|
||||
for arg in args:
|
||||
parts = arg.split(splitcode)
|
||||
fspath = py.path.local(parts[0])
|
||||
@@ -197,8 +197,8 @@ def make_reltoroot(roots, args):
|
||||
break
|
||||
else:
|
||||
raise ValueError("arg %s not relative to an rsync root" % (arg,))
|
||||
l.append(splitcode.join(parts))
|
||||
return l
|
||||
result.append(splitcode.join(parts))
|
||||
return result
|
||||
|
||||
|
||||
class SlaveController(object):
|
||||
@@ -304,7 +304,7 @@ class SlaveController(object):
|
||||
self._down = True
|
||||
self.slaveoutput = kwargs['slaveoutput']
|
||||
self.notify_inproc("slavefinished", node=self)
|
||||
elif eventname == "logstart":
|
||||
elif eventname in ("logstart", "logfinish"):
|
||||
self.notify_inproc(eventname, node=self, **kwargs)
|
||||
elif eventname in (
|
||||
"testreport", "collectreport", "teardownreport"):
|
||||
@@ -326,7 +326,7 @@ class SlaveController(object):
|
||||
except KeyboardInterrupt:
|
||||
# should not land in receiver-thread
|
||||
raise
|
||||
except:
|
||||
except: # noqa
|
||||
excinfo = py.code.ExceptionInfo()
|
||||
py.builtin.print_("!" * 20, excinfo)
|
||||
self.config.notify_exception(excinfo)
|
||||
|
||||
Reference in New Issue
Block a user