Compare commits

...

26 Commits

Author SHA1 Message Date
Ronny Pfannschmidt
771f248a04 refactor cpu number autodetection to avoid the regression 2015-08-19 21:34:26 +02:00
Ronny Pfannschmidt
c0c794b961 Added tag v1.13 for changeset 4e25f4c568be 2015-08-18 08:45:54 +02:00
Ronny Pfannschmidt
8630c27c75 flake8 fixes 2015-08-18 08:45:18 +02:00
Ronny Pfannschmidt
1fde875c91 changelog 2015-08-18 08:33:44 +02:00
Ronny Pfannschmidt
9f32c38398 add version file to hgignore 2015-08-18 08:30:00 +02:00
Ronny Pfannschmidt
eba5319fdb clean up setup.py and use setuptools_scm 2015-08-18 08:29:23 +02:00
Ronny Pfannschmidt
ec89a3c36b split up the plugin and extend tox test matrix 2015-08-08 11:57:08 +02:00
Ronny Pfannschmidt
6bab1dab75 simplify HostRsync constructor 2015-08-05 22:04:21 +02:00
Floris Bruynooghe
02cb571da0 Merged pull request #18 2015-08-04 23:30:50 +01:00
Floris Bruynooghe
f40e34c3ea Merged in nicoddemus/pytest-xdist/max-slave-restart-option (pull request #20)
Add --max-slave-restart option
2015-08-04 23:21:36 +01:00
Bruno Oliveira
4b1ddb9c81 Add --max-slave-restart option
Also changed wording used from "failed node" to "crashed slave", to conform
with other messages ("slave sw0 crashed")
2015-07-11 13:12:12 -03:00
Bruno Oliveira
9d4afbdfec Add test, CHANGELOG and docs for auto-cpu detection PR 2015-07-11 12:14:48 -03:00
Bruno Oliveira
ed9e5cd9ea merged auto-cpu branch 2015-07-11 12:01:00 -03:00
Bruno Oliveira
3330aac877 Add test for new pytest-2.8 behavior and add CHANGELOG entry 2015-07-11 11:45:27 -03:00
Bruno Oliveira
a131d34b2d testscollected is now a public Session attribute 2015-07-06 20:27:41 -03:00
Bruno Oliveira
05ab96feaf update collected tests from slaves into main pytest session object
Upstream changes in https://github.com/pytest-dev/pytest/pull/817 make
pytest-dist always return EXIT_NOTESTSCOLLECTED because the
master node doesn't collect any tests. This patch updates the pytest session
about the collected items on the slaves.
2015-07-04 15:40:55 -03:00
holger krekel
54a43db053 add support for releasing as universal wheel 2015-05-07 12:30:29 +02:00
holger krekel
1b0b406adb Added tag 1.12 for changeset 39ef85dbc893 2015-05-06 14:32:50 +02:00
holger krekel
2ea07f73a7 finalize 1.12 version, some more adaptation for pytest versions, streamlining tox.ini 2015-05-06 13:41:39 +02:00
holger krekel
faf2e0861f streamline tests so that they work wit pytest-2.8 2015-05-06 13:34:33 +02:00
holger krekel
eb53a5f8a0 Added tag 1.11 for changeset 220f6e46eb71 2015-04-16 08:48:06 +02:00
Anatoly Bubenkov
5da798f01f README.txt edited online with Bitbucket 2015-03-01 14:45:15 +00:00
holger krekel
94a7723ba8 fix link to pytest-xdist repository 2015-02-27 12:19:16 +01:00
Comrade DOS
9aee5f3d66 Add auto detection CPUs number. 2015-01-12 17:51:11 +06:00
holger krekel
87be3b7582 (added changelog) fix issue594: properly report errors when the test collection
is random.  Thanks Bruno Oliveira.
2014-09-24 13:43:57 +02:00
Bruno Oliveira
d84f1f08d8 fix issue 594: xdist is not executing tests parametrized with random values
Now xdist properly reports the collection errors instead of silently failing to execute
the test suite.
2014-09-23 22:09:44 -03:00
18 changed files with 614 additions and 392 deletions

View File

@@ -22,6 +22,7 @@ dist/
include/ include/
lib/ lib/
bin/ bin/
xdist/_version.py
pytest_xdist.egg-info pytest_xdist.egg-info
issue/ issue/
3rdparty/ 3rdparty/

View File

@@ -15,3 +15,6 @@ cd44a941c833c098e4899fe3d42a96703754d0d5 1.5
1d27987c267577899350a25ba5828d55d87083ad 1.8 1d27987c267577899350a25ba5828d55d87083ad 1.8
5c5cb6d59e12e566fbb0217aea718dc31578bee1 1.9 5c5cb6d59e12e566fbb0217aea718dc31578bee1 1.9
4406fc2a6427fadc021ed7e43e7aa5032b1ea91f 1.10 4406fc2a6427fadc021ed7e43e7aa5032b1ea91f 1.10
220f6e46eb71a6212ccbe6b67b9e6edcf8ee4fa5 1.11
39ef85dbc893cc63dede11601208098a667b58e9 1.12
4e25f4c568be2d7cb4d1739638a9e66bbf28f588 v1.13

View File

@@ -1,3 +1,43 @@
1.13.1
-------
- fix a regression -n 0 now disables xdist again
1.13
-------------------------
- extended the tox matrix with the supported py.test versions
- split up the plugin into 3 plugin's
to prepare the departure of boxed and looponfail.
looponfail will be a part of core
and forked boxed will be replaced
with a more reliable primitive based on xdist
- conforming with new pytest-2.8 behavior of returning non-zero when all
tests were skipped or deselected.
- new "--max-slave-restart" option that can be used to control maximum
number of times pytest-xdist can restart slaves due to crashes. Thanks to
Anatoly Bubenkov for the report and Bruno Oliveira for the PR.
- release as wheel
- "-n" option now can be set to "auto" for automatic detection of number
of cpus in the host system. Thanks Suloev Dmitry for the PR.
1.12
-------------------------
- fix issue594: properly report errors when the test collection
is random. Thanks Bruno Oliveira.
- some internal test suite adaptation (to become forward
compatible with the upcoming pytest-2.8)
1.11 1.11
------------------------- -------------------------
@@ -10,7 +50,7 @@
Thanks to Andreas Pelme for bug analysis and failing test. Thanks to Andreas Pelme for bug analysis and failing test.
- restart crashed nodes by internally refactoring setup handling - restart crashed nodes by internally refactoring setup handling
of nodes. Also includes better code documentation. of nodes. Also includes better code documentation.
Many thanks to Floris Bruynooghe for the complete PR. Many thanks to Floris Bruynooghe for the complete PR.
@@ -23,7 +63,7 @@
- fix pytest issue382 - produce "pytest_runtest_logstart" event again - fix pytest issue382 - produce "pytest_runtest_logstart" event again
in master. Thanks Aron Curzon. in master. Thanks Aron Curzon.
- fix pytest issue419 by sending/receiving indices into the test - 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 neccessarily unique
for functions parametrized with duplicate values) for functions parametrized with duplicate values)
@@ -136,4 +176,3 @@
- cleaned up termination handling - cleaned up termination handling
- make -x cause hard killing of test nodes to decrease wait time - make -x cause hard killing of test nodes to decrease wait time
until the traceback shows up on first failure until the traceback shows up on first failure

View File

@@ -1,212 +1,221 @@
xdist: pytest distributed testing plugin .. image:: https://drone.io/bitbucket.org/pytest-dev/pytest-xdist/status.png
=============================================================== :target: https://drone.io/bitbucket.org/pytest-dev/pytest-xdist/latest
.. image:: https://pypip.in/v/pytest-xdist/badge.png
The `pytest-xdist`_ plugin extends py.test with some unique :target: https://pypi.python.org/pypi/pytest-xdist
test execution modes:
xdist: pytest distributed testing plugin
* test run parallelization_: if you have multiple CPUs or hosts you can use ============================
those for a combined test run. This allows to speed up
development or to use special resources of `remote machines`_. The `pytest-xdist`_ plugin extends py.test with some unique
test execution modes:
* ``--boxed``: (not available on Windows) run each test in a boxed_
subprocess to survive ``SEGFAULTS`` or otherwise dying processes * test run parallelization_: if you have multiple CPUs or hosts you can use
those for a combined test run. This allows to speed up
* ``--looponfail``: run your tests repeatedly in a subprocess. After each run development or to use special resources of `remote machines`_.
py.test waits until a file in your project changes and then re-runs
the previously failing tests. This is repeated until all tests pass * ``--boxed``: (not available on Windows) run each test in a boxed_
after which again a full run is performed. subprocess to survive ``SEGFAULTS`` or otherwise dying processes
* `Multi-Platform`_ coverage: you can specify different Python interpreters * ``--looponfail``: run your tests repeatedly in a subprocess. After each run
or different platforms and run tests in parallel on all of them. py.test waits until a file in your project changes and then re-runs
the previously failing tests. This is repeated until all tests pass
Before running tests remotely, ``py.test`` efficiently "rsyncs" your after which again a full run is performed.
program source code to the remote place. All test results
are reported back and displayed to your local terminal. * `Multi-Platform`_ coverage: you can specify different Python interpreters
You may specify different Python versions and interpreters. or different platforms and run tests in parallel on all of them.
Before running tests remotely, ``py.test`` efficiently "rsyncs" your
Installation 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.
Install the plugin with::
easy_install pytest-xdist Installation
-----------------------
# or
Install the plugin with::
pip install pytest-xdist
easy_install pytest-xdist
or use the package in develope/in-place mode with
a checkout of the `pytest-xdist repository`_ :: # or
python setup.py develop pip install pytest-xdist
Usage examples or use the package in develope/in-place mode with
--------------------- a checkout of the `pytest-xdist repository`_ ::
.. _parallelization: python setup.py develop
Speed up test runs by sending tests to multiple CPUs Usage examples
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ---------------------
To send tests to multiple CPUs, type:: .. _parallelization:
py.test -n NUM Speed up test runs by sending tests to multiple CPUs
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Especially for longer running tests or tests requiring
a lot of IO this can lead to considerable speed ups. To send tests to multiple CPUs, type::
py.test -n NUM
Running tests in a Python subprocess
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Especially for longer running tests or tests requiring
a lot of IO this can lead to considerable speed ups. This option can
To instantiate a python2.5 sub process and send tests to it, you may type:: also be set to ``auto`` for automatic detection of the number of CPUs.
py.test -d --tx popen//python=python2.5 If a test crashes the interpreter, pytest-xdist will automatically restart
that slave and report the failure as usual. You can use the
This will start a subprocess which is run with the "python2.5" ``--max-slave-restart`` option to limit the number of slaves that can
Python interpreter, found in your system binary lookup path. be restarted, or disable restarting altogether using ``--max-slave-restart=0``.
If you prefix the --tx option value like this::
Running tests in a Python subprocess
--tx 3*popen//python=python2.5 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
then three subprocesses would be created and tests To instantiate a python2.5 sub process and send tests to it, you may type::
will be load-balanced across these three processes.
py.test -d --tx popen//python=python2.5
.. _boxed:
This will start a subprocess which is run with the "python2.5"
Running tests in a boxed subprocess Python interpreter, found in your system binary lookup path.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
If you prefix the --tx option value like this::
If you have tests involving C or C++ libraries you might have to deal
with tests crashing the process. For this case you may use the boxing --tx 3*popen//python=python2.5
options::
then three subprocesses would be created and tests
py.test --boxed will be load-balanced across these three processes.
which will run each test in a subprocess and will report if a test .. _boxed:
crashed the process. You can also combine this option with
running multiple processes to speed up the test run and use your CPU cores:: Running tests in a boxed subprocess
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
py.test -n3 --boxed
If you have tests involving C or C++ libraries you might have to deal
this would run 3 testing subprocesses in parallel which each with tests crashing the process. For this case you may use the boxing
create new boxed subprocesses for each test. options::
py.test --boxed
.. _`remote machines`:
which will run each test in a subprocess and will report if a test
Sending tests to remote SSH accounts crashed the process. You can also combine this option with
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ running multiple processes to speed up the test run and use your CPU cores::
Suppose you have a package ``mypkg`` which contains some py.test -n3 --boxed
tests that you can successfully run locally. And you
have a ssh-reachable machine ``myhost``. Then this would run 3 testing subprocesses in parallel which each
you can ad-hoc distribute your tests by typing:: create new boxed subprocesses for each test.
py.test -d --tx ssh=myhostpopen --rsyncdir mypkg mypkg
.. _`remote machines`:
This will synchronize your ``mypkg`` package directory
to an remote ssh account and then locally collect tests Sending tests to remote SSH accounts
and send them to remote places for execution. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
You can specify multiple ``--rsyncdir`` directories Suppose you have a package ``mypkg`` which contains some
to be sent to the remote side. tests that you can successfully run locally. And you
have a ssh-reachable machine ``myhost``. Then
**NOTE:** For py.test to collect and send tests correctly you can ad-hoc distribute your tests by typing::
you not only need to make sure all code and tests
directories are rsynced, but that any test (sub) directory py.test -d --tx ssh=myhostpopen --rsyncdir mypkg mypkg
also has an ``__init__.py`` file because internally
py.test references tests as a fully qualified python This will synchronize your ``mypkg`` package directory
module path. **You will otherwise get strange errors** to an remote ssh account and then locally collect tests
during setup of the remote side. and send them to remote places for execution.
You can specify multiple ``--rsyncignore`` glob-patterns You can specify multiple ``--rsyncdir`` directories
to be ignored when file are sent to the remote side. to be sent to the remote side.
There are also internal ignores: .*, *.pyc, *.pyo, *~
Those you cannot override using rsyncignore command-line or **NOTE:** For py.test to collect and send tests correctly
ini-file option(s). you not only need to make sure all code and tests
directories are rsynced, but that any test (sub) directory
also has an ``__init__.py`` file because internally
Sending tests to remote Socket Servers py.test references tests as a fully qualified python
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ module path. **You will otherwise get strange errors**
during setup of the remote side.
Download the single-module `socketserver.py`_ Python program
and run it like this:: You can specify multiple ``--rsyncignore`` glob-patterns
to be ignored when file are sent to the remote side.
python socketserver.py There are also internal ignores: .*, *.pyc, *.pyo, *~
Those you cannot override using rsyncignore command-line or
It will tell you that it starts listening on the default ini-file option(s).
port. You can now on your home machine specify this
new socket host with something like this::
Sending tests to remote Socket Servers
py.test -d --tx socket=192.168.1.102:8888 --rsyncdir mypkg mypkg +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Download the single-module `socketserver.py`_ Python program
.. _`atonce`: and run it like this::
.. _`Multi-Platform`:
python socketserver.py
Running tests on many platforms at once It will tell you that it starts listening on the default
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ port. You can now on your home machine specify this
new socket host with something like this::
The basic command to run tests on multiple platforms is::
py.test -d --tx socket=192.168.1.102:8888 --rsyncdir mypkg mypkg
py.test --dist=each --tx=spec1 --tx=spec2
If you specify a windows host, an OSX host and a Linux .. _`atonce`:
environment this command will send each tests to all .. _`Multi-Platform`:
platforms - and report back failures from all platforms
at once. The specifications strings use the `xspec syntax`_.
Running tests on many platforms at once
.. _`xspec syntax`: http://codespeak.net/execnet/trunk/basics.html#xspec +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.. _`socketserver.py`: http://bitbucket.org/hpk42/execnet/raw/2af991418160/execnet/script/socketserver.py The basic command to run tests on multiple platforms is::
.. _`execnet`: http://codespeak.net/execnet py.test --dist=each --tx=spec1 --tx=spec2
Specifying test exec environments in an ini file If you specify a windows host, an OSX host and a Linux
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ environment this command will send each tests to all
platforms - and report back failures from all platforms
pytest (since version 2.0) supports ini-style cofiguration. at once. The specifications strings use the `xspec syntax`_.
You can for example make running with three subprocesses
your default like this:: .. _`xspec syntax`: http://codespeak.net/execnet/trunk/basics.html#xspec
[pytest] .. _`socketserver.py`: http://bitbucket.org/hpk42/execnet/raw/2af991418160/execnet/script/socketserver.py
addopts = -n3
.. _`execnet`: http://codespeak.net/execnet
You can also add default environments like this::
Specifying test exec environments in an ini file
[pytest] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
addopts = --tx ssh=myhost//python=python2.5 --tx ssh=myhost//python=python2.6
pytest (since version 2.0) supports ini-style cofiguration.
and then just type:: You can for example make running with three subprocesses
your default like this::
py.test --dist=each
[pytest]
to run tests in each of the environments. addopts = -n3
Specifying "rsync" dirs in an ini-file You can also add default environments like this::
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[pytest]
In a ``tox.ini`` or ``setup.cfg`` file in your root project directory addopts = --tx ssh=myhost//python=python2.5 --tx ssh=myhost//python=python2.6
you may specify directories to include or to exclude in synchronisation::
and then just type::
[pytest]
rsyncdirs = . mypkg helperpkg py.test --dist=each
rsyncignore = .hg
to run tests in each of the environments.
These directory specifications are relative to the directory
where the configuration file was found. Specifying "rsync" dirs in an ini-file
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.. _`pytest-xdist`: http://pypi.python.org/pypi/pytest-xdist
.. _`pytest-xdist repository`: http://bitbucket.org/hpk42/pytest-xdist In a ``tox.ini`` or ``setup.cfg`` file in your root project directory
.. _`pytest`: http://pytest.org you may specify directories to include or to exclude in synchronisation::
Issue and Bug Tracker [pytest]
------------------------ rsyncdirs = . mypkg helperpkg
rsyncignore = .hg
Please use the pytest issue tracker for bugs in this plugin, see https://bitbucket.org/hpk42/pytest/issues .
These directory specifications are relative to the directory
where the configuration file was found.
.. _`pytest-xdist`: http://pypi.python.org/pypi/pytest-xdist
.. _`pytest-xdist repository`: http://bitbucket.org/pytest-dev/pytest-xdist
.. _`pytest`: http://pytest.org
Issue and Bug Tracker
------------------------
Please use the pytest issue tracker for bugs in this plugin, see https://bitbucket.org/hpk42/pytest/issues .

2
setup.cfg Normal file
View File

@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="pytest-xdist", name="pytest-xdist",
version='1.11', use_scm_version={'write_to': 'xdist/_version.py'},
description='py.test xdist plugin for distributed testing and loop-on-failing modes', description='py.test xdist plugin for distributed testing and loop-on-failing modes',
long_description=open('README.txt').read(), long_description=open('README.txt').read(),
license='MIT', license='MIT',
@@ -11,20 +11,27 @@ setup(
url='http://bitbucket.org/hpk42/pytest-xdist', url='http://bitbucket.org/hpk42/pytest-xdist',
platforms=['linux', 'osx', 'win32'], platforms=['linux', 'osx', 'win32'],
packages = ['xdist'], packages = ['xdist'],
entry_points = {'pytest11': ['xdist = xdist.plugin'],}, entry_points = {
'pytest11': [
'xdist = xdist.plugin',
'xdist.looponfail = xdist.looponfail',
'xdist.boxed = xdist.boxed',
],
},
zip_safe=False, zip_safe=False,
install_requires = ['execnet>=1.1', 'pytest>=2.4.2', 'py>=1.4.22'], install_requires=['execnet>=1.1', 'pytest>=2.4.2', 'py>=1.4.22'],
setup_requires=['setuptools_scm'],
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: POSIX', 'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X', 'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Quality Assurance',
'Topic :: Utilities', 'Topic :: Utilities',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
], ],
) )

View File

@@ -113,7 +113,7 @@ class TestDistribution:
import py import py
assert tmpdir.relto(py.path.local(%r)), tmpdir assert tmpdir.relto(py.path.local(%r)), tmpdir
""" % str(testdir.tmpdir)) """ % str(testdir.tmpdir))
result = testdir.runpytest(p1, "-n1") result = testdir.runpytest_subprocess(p1, "-n1")
assert result.ret == 0 assert result.ret == 0
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
"*1 passed*", "*1 passed*",
@@ -243,7 +243,7 @@ class TestDistribution:
print ("s2call-finished") print ("s2call-finished")
""") """)
args = ["-n1", "--debug"] args = ["-n1", "--debug"]
result = testdir.runpytest(*args) result = testdir.runpytest_subprocess(*args)
s = result.stdout.str() s = result.stdout.str()
assert result.ret == 2 assert result.ret == 2
assert 's2call' in s assert 's2call' in s
@@ -256,9 +256,8 @@ class TestDistribution:
import time import time
time.sleep(10) time.sleep(10)
""") """)
child = testdir.spawn_pytest("-n1") child = testdir.spawn_pytest("-n1 -v")
py.std.time.sleep(0.1) child.expect(".*test_sleep.*")
child.expect(".*test session starts.*")
child.kill(2) # keyboard interrupt child.kill(2) # keyboard interrupt
child.expect(".*KeyboardInterrupt.*") child.expect(".*KeyboardInterrupt.*")
#child.expect(".*seconds.*") #child.expect(".*seconds.*")
@@ -271,7 +270,7 @@ class TestDistEach:
def test_hello(): def test_hello():
pass pass
""") """)
result = testdir.runpytest("--debug", "--dist=each", "--tx=2*popen") result = testdir.runpytest_subprocess("--debug", "--dist=each", "--tx=2*popen")
assert not result.ret assert not result.ret
result.stdout.fnmatch_lines(["*2 pass*"]) result.stdout.fnmatch_lines(["*2 pass*"])
@@ -364,6 +363,19 @@ def test_terminate_on_hangingnode(testdir):
]) ])
def test_auto_detect_cpus(testdir, monkeypatch):
import multiprocessing
monkeypatch.setattr(multiprocessing, 'cpu_count', lambda: 3)
testdir.makeconftest("""
def pytest_unconfigure(config):
with open('cpus', 'w') as f:
f.write('cpus = %s' % config.option.numprocesses)
""")
testdir.inline_run('-n=auto')
cpus_file = testdir.tmpdir.join('cpus')
assert cpus_file.read() == 'cpus = 3'
@pytest.mark.xfail(reason="works if run outside test suite", run=False) @pytest.mark.xfail(reason="works if run outside test suite", run=False)
def test_session_hooks(testdir): def test_session_hooks(testdir):
testdir.makeconftest(""" testdir.makeconftest("""
@@ -398,6 +410,31 @@ def test_session_hooks(testdir):
assert testdir.tmpdir.join("slave").check() assert testdir.tmpdir.join("slave").check()
assert testdir.tmpdir.join("master").check() assert testdir.tmpdir.join("master").check()
def test_session_testscollected(testdir):
"""
Make sure master node is updating the session object with the number
of tests collected from the slaves.
"""
testdir.makepyfile(test_foo="""
import pytest
@pytest.mark.parametrize('i', range(3))
def test_ok(i):
pass
""")
testdir.makeconftest("""
def pytest_sessionfinish(session):
collected = getattr(session, 'testscollected', None)
with open('testscollected', 'w') as f:
f.write('collected = %s' % collected)
""")
result = testdir.inline_run("-n1")
result.assertoutcome(passed=3)
collected_file = testdir.tmpdir.join('testscollected')
assert collected_file.isfile()
assert collected_file.read() == 'collected = 3'
def test_funcarg_teardown_failure(testdir): def test_funcarg_teardown_failure(testdir):
p = testdir.makepyfile(""" p = testdir.makepyfile("""
def pytest_funcarg__myarg(request): def pytest_funcarg__myarg(request):
@@ -408,7 +445,7 @@ def test_funcarg_teardown_failure(testdir):
def test_hello(myarg): def test_hello(myarg):
pass pass
""") """)
result = testdir.runpytest("--debug", p) # , "-n1") result = testdir.runpytest_subprocess("--debug", p) # , "-n1")
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
"*ValueError*42*", "*ValueError*42*",
"*1 passed*1 error*", "*1 passed*1 error*",
@@ -455,7 +492,7 @@ def test_issue34_pluginloading_in_subprocess(testdir):
def test_hello(): def test_hello():
assert pytest.sample_variable == "testing" assert pytest.sample_variable == "testing"
""") """)
result = testdir.runpytest("-n1", "-p", "plugin123") result = testdir.runpytest_subprocess("-n1", "-p", "plugin123")
assert result.ret == 0 assert result.ret == 0
result.stdout.fnmatch_lines([ result.stdout.fnmatch_lines([
"*1 passed*", "*1 passed*",
@@ -485,6 +522,28 @@ def test_fixture_scope_caching_issue503(testdir):
]) ])
def test_issue_594_random_parametrize(testdir):
"""
Make sure that tests that are randomly parametrized display an appropriate
error message, instead of silently skipping the entire test run.
"""
p1 = testdir.makepyfile("""
import pytest
import random
xs = list(range(10))
random.shuffle(xs)
@pytest.mark.parametrize('x', xs)
def test_foo(x):
assert 1
""")
result = testdir.runpytest(p1, '-v', '-n4')
assert result.ret == 1
result.stdout.fnmatch_lines([
"Different tests were collected between gw* and gw*",
])
class TestNodeFailure: class TestNodeFailure:
def test_load_single(self, testdir): def test_load_single(self, testdir):
@@ -495,7 +554,7 @@ class TestNodeFailure:
""") """)
res = testdir.runpytest(f, '-n1') res = testdir.runpytest(f, '-n1')
res.stdout.fnmatch_lines([ res.stdout.fnmatch_lines([
"*Replacing failed node*", "*Replacing crashed slave*",
"*Slave*crashed while running*", "*Slave*crashed while running*",
"*1 failed*1 passed*", "*1 failed*1 passed*",
]) ])
@@ -510,7 +569,7 @@ class TestNodeFailure:
""") """)
res = testdir.runpytest(f, '-n2') res = testdir.runpytest(f, '-n2')
res.stdout.fnmatch_lines([ res.stdout.fnmatch_lines([
"*Replacing failed node*", "*Replacing crashed slave*",
"*Slave*crashed while running*", "*Slave*crashed while running*",
"*1 failed*3 passed*", "*1 failed*3 passed*",
]) ])
@@ -523,7 +582,7 @@ class TestNodeFailure:
""") """)
res = testdir.runpytest(f, '--dist=each', '--tx=popen') res = testdir.runpytest(f, '--dist=each', '--tx=popen')
res.stdout.fnmatch_lines([ res.stdout.fnmatch_lines([
"*Replacing failed node*", "*Replacing crashed slave*",
"*Slave*crashed while running*", "*Slave*crashed while running*",
"*1 failed*1 passed*", "*1 failed*1 passed*",
]) ])
@@ -536,7 +595,39 @@ class TestNodeFailure:
""") """)
res = testdir.runpytest(f, '--dist=each', '--tx=2*popen') res = testdir.runpytest(f, '--dist=each', '--tx=2*popen')
res.stdout.fnmatch_lines([ res.stdout.fnmatch_lines([
"*Replacing failed node*", "*Replacing crashed slave*",
"*Slave*crashed while running*", "*Slave*crashed while running*",
"*2 failed*2 passed*", "*2 failed*2 passed*",
]) ])
def test_max_slave_restart(self, testdir):
f = testdir.makepyfile("""
import os
def test_a(): pass
def test_b(): os._exit(1)
def test_c(): os._exit(1)
def test_d(): pass
""")
res = testdir.runpytest(f, '-n4', '--max-slave-restart=1')
res.stdout.fnmatch_lines([
"*Replacing crashed slave*",
"*Maximum crashed slaves reached: 1*",
"*Slave*crashed while running*",
"*Slave*crashed while running*",
"*2 failed*2 passed*",
])
def test_disable_restart(self, testdir):
f = testdir.makepyfile("""
import os
def test_a(): pass
def test_b(): os._exit(1)
def test_c(): pass
""")
res = testdir.runpytest(f, '-n4', '--max-slave-restart=0')
res.stdout.fnmatch_lines([
"*Slave restarting disabled*",
"*Slave*crashed while running*",
"*1 failed*2 passed*",
])

View File

@@ -1,10 +1,29 @@
import py import py
import pytest
import execnet import execnet
@pytest.fixture(scope="session", autouse=True)
def _ensure_imports():
# we import some modules because pytest-2.8's testdir fixture
# will unload all modules after each test and this cause
# (unknown) problems with execnet.Group()
execnet.Group
execnet.makegateway
pytest_plugins = "pytester" pytest_plugins = "pytester"
#rsyncdirs = ['.', '../xdist', py.path.local(execnet.__file__).dirpath()] #rsyncdirs = ['.', '../xdist', py.path.local(execnet.__file__).dirpath()]
@pytest.fixture(autouse=True)
def _divert_atexit(request, monkeypatch):
import atexit
l = []
def finish():
while l:
l.pop()()
monkeypatch.setattr(atexit, "register", l.append)
request.addfinalizer(finish)
def pytest_addoption(parser): def pytest_addoption(parser):
parser.addoption('--gx', parser.addoption('--gx',
action="append", dest="gspecs", action="append", dest="gspecs",
@@ -13,6 +32,13 @@ def pytest_addoption(parser):
def pytest_funcarg__specssh(request): def pytest_funcarg__specssh(request):
return getspecssh(request.config) return getspecssh(request.config)
@pytest.fixture
def testdir(testdir):
# pytest before 2.8 did not have a runpytest_subprocess
if not hasattr(testdir, "runpytest_subprocess"):
testdir.runpytest_subprocess = testdir.runpytest
return testdir
# configuration information for tests # configuration information for tests
def getgspecs(config): def getgspecs(config):
return [execnet.XSpec(spec) return [execnet.XSpec(spec)

View File

@@ -144,24 +144,36 @@ class TestLoadScheduling:
crashitem = sched.remove_node(node) crashitem = sched.remove_node(node)
assert crashitem == collection[0] assert crashitem == collection[0]
def test_schedule_different_tests_collected(self): def test_different_tests_collected(self, testdir):
""" """
Test that LoadScheduling is logging different tests were Test that LoadScheduling is reporting collection errors when
collected by slaves when that happens. different test ids are collected by slaves.
""" """
class CollectHook(object):
"""
Dummy hook that stores collection reports.
"""
def __init__(self):
self.reports = []
def pytest_collectreport(self, report):
self.reports.append(report)
collect_hook = CollectHook()
config = testdir.parseconfig()
config.pluginmanager.register(collect_hook, "collect_hook")
node1 = MockNode() node1 = MockNode()
node2 = MockNode() node2 = MockNode()
sched = LoadScheduling(2) sched = LoadScheduling(2, config=config)
logged_messages = []
py.log.setconsumer('loadsched', logged_messages.append)
sched.addnode(node1) sched.addnode(node1)
sched.addnode(node2) sched.addnode(node2)
sched.addnode_collection(node1, ["a.py::test_1"]) sched.addnode_collection(node1, ["a.py::test_1"])
sched.addnode_collection(node2, ["a.py::test_2"]) sched.addnode_collection(node2, ["a.py::test_2"])
sched.init_distribute() sched.init_distribute()
logged_content = ''.join(x.content() for x in logged_messages) assert len(collect_hook.reports) == 1
assert 'Different tests were collected between' in logged_content rep = collect_hook.reports[0]
assert 'Different tests collected, aborting run' in logged_content assert 'Different tests were collected between' in rep.longrepr
class TestDistReporter: class TestDistReporter:

View File

@@ -13,7 +13,7 @@ def test_dist_incompatibility_messages(testdir):
assert "incompatible" in result.stderr.str() assert "incompatible" in result.stderr.str()
def test_dist_options(testdir): def test_dist_options(testdir):
from xdist.plugin import check_options from xdist.plugin import pytest_cmdline_main as check_options
config = testdir.parseconfigure("-n 2") config = testdir.parseconfigure("-n 2")
check_options(config) check_options(config)
assert config.option.dist == "load" assert config.option.dist == "load"
@@ -67,4 +67,3 @@ class TestDistOptions:
assert py.path.local('y') in roots assert py.path.local('y') in roots
assert py.path.local('z') in roots assert py.path.local('z') in roots
assert testdir.tmpdir.join('x') in roots assert testdir.tmpdir.join('x') in roots

View File

@@ -1,29 +1,27 @@
import py import py
import pytest import pytest
import execnet import execnet
from xdist import slavemanage from _pytest.pytester import HookRecorder
from xdist import slavemanage, newhooks
from xdist.slavemanage import HostRSync, NodeManager from xdist.slavemanage import HostRSync, NodeManager
pytest_plugins = "pytester", pytest_plugins = "pytester"
def pytest_funcarg__hookrecorder(request): def pytest_funcarg__hookrecorder(request, config):
_pytest = request.getfuncargvalue('_pytest') hookrecorder = HookRecorder(config.pluginmanager)
config = request.getfuncargvalue('config') if hasattr(hookrecorder, "start_recording"):
return _pytest.gethookrecorder(config.hook) hookrecorder.start_recording(newhooks)
request.addfinalizer(hookrecorder.finish_recording)
return hookrecorder
def pytest_funcarg__config(request): def pytest_funcarg__config(testdir):
testdir = request.getfuncargvalue("testdir") return testdir.parseconfig()
config = testdir.parseconfig()
return config
def pytest_funcarg__mysetup(request): def pytest_funcarg__mysetup(tmpdir):
class mysetup: class mysetup:
def __init__(self, request): source = tmpdir.mkdir("source")
temp = request.getfuncargvalue("tmpdir") dest = tmpdir.mkdir("dest")
self.source = temp.mkdir("source") return mysetup()
self.dest = temp.mkdir("dest")
request.getfuncargvalue("_pytest")
return mysetup(request)
@pytest.fixture @pytest.fixture
def slavecontroller(monkeypatch): def slavecontroller(monkeypatch):
@@ -45,8 +43,7 @@ class TestNodeManagerPopen:
for spec in NodeManager(config, l, defaultchdir="abc").specs: for spec in NodeManager(config, l, defaultchdir="abc").specs:
assert spec.chdir == "abc" assert spec.chdir == "abc"
def test_popen_makegateway_events(self, config, def test_popen_makegateway_events(self, config, hookrecorder, slavecontroller):
hookrecorder, _pytest, slavecontroller):
hm = NodeManager(config, ["popen"] * 2) hm = NodeManager(config, ["popen"] * 2)
hm.setup_nodes(None) hm.setup_nodes(None)
call = hookrecorder.popcall("pytest_xdist_setupnodes") call = hookrecorder.popcall("pytest_xdist_setupnodes")
@@ -114,14 +111,6 @@ class TestNodeManagerPopen:
call = hookrecorder.popcall("pytest_xdist_rsyncfinish") call = hookrecorder.popcall("pytest_xdist_rsyncfinish")
class TestHRSync: class TestHRSync:
def pytest_funcarg__mysetup(self, request):
class mysetup:
def __init__(self, request):
tmp = request.getfuncargvalue('tmpdir')
self.source = tmp.mkdir("source")
self.dest = tmp.mkdir("dest")
return mysetup(request)
def test_hrsync_filter(self, mysetup): def test_hrsync_filter(self, mysetup):
source, _ = mysetup.source, mysetup.dest # noqa source, _ = mysetup.source, mysetup.dest # noqa
source.ensure("dir", "file.txt") source.ensure("dir", "file.txt")
@@ -151,7 +140,7 @@ class TestHRSync:
class TestNodeManager: class TestNodeManager:
@py.test.mark.xfail @py.test.mark.xfail(run=False)
def test_rsync_roots_no_roots(self, testdir, mysetup): def test_rsync_roots_no_roots(self, testdir, mysetup):
mysetup.source.ensure("dir1", "file1").write("hello") mysetup.source.ensure("dir1", "file1").write("hello")
config = testdir.parseconfig(mysetup.source) config = testdir.parseconfig(mysetup.source)

43
tox.ini
View File

@@ -1,43 +1,28 @@
[tox] [tox]
envlist=py26,py33,py34,py27,py27-pexpect,py33-pexpect,py26,py26-old,py33-old,flakes envlist=
py{26,33,34,27}-pytest2{4,5,6,7},py{27,34}-pytest27-pexpect,flakes
[testenv] [testenv]
changedir=testing changedir=testing
deps=pytest>=2.5.1 deps =
commands= py.test {posargs} pycmd
pytest24: pytest~=2.4.0
pytest25: pytest~=2.5.0
[testenv:py27-pexpect] pytest26: pytest~=2.6.1
deps={[testenv]deps} pytest27: pytest~=2.7.2
pexpect pexpect: pexpect
[testenv:py33-pexpect] commands=
deps={[testenv]deps} # always clean to avoid code unmarshal mismatch on old python/pytest
pexpect py.cleanup -aq
py.test {posargs}
[testenv:flakes] [testenv:flakes]
changedir= changedir=
deps = pytest-flakes>=0.2 deps = pytest-flakes>=0.2
commands = py.test --flakes -m flakes testing xdist commands = py.test --flakes -m flakes testing xdist
[testenv:py26-old]
basepython = python2.6
deps=
pytest==2.5.2
pycmd
commands=
py.cleanup -a
py.test {posargs}
[testenv:py33-old]
basepython = python3.3
deps=
pytest==2.5.2
pycmd
commands=
py.cleanup -a
py.test {posargs}
[pytest] [pytest]
addopts = -rsfxX addopts = -rsfxX
;; hello ;; hello

View File

@@ -1,2 +1,2 @@
# __all__ = ['__version__']
__version__ = '1.11' from xdist._version import version as __version__

56
xdist/boxed.py Normal file
View File

@@ -0,0 +1,56 @@
import py
def pytest_addoption(parser):
group = parser.getgroup("xdist", "distributed and subprocess testing")
group.addoption('--boxed',
action="store_true", dest="boxed", default=False,
help="box each test run in a separate process (unix)")
def pytest_runtest_protocol(item):
if item.config.getvalue("boxed"):
reports = forked_run_report(item)
for rep in reports:
item.ihook.pytest_runtest_logreport(report=rep)
return True
def forked_run_report(item):
# for now, we run setup/teardown in the subprocess
# XXX optionally allow sharing of setup/teardown
from _pytest.runner import runtestprotocol
EXITSTATUS_TESTEXIT = 4
import marshal
from xdist.remote import serialize_report
from xdist.slavemanage import unserialize_report
def runforked():
try:
reports = runtestprotocol(item, log=False)
except KeyboardInterrupt:
py.std.os._exit(EXITSTATUS_TESTEXIT)
return marshal.dumps([serialize_report(x) for x in reports])
ff = py.process.ForkedFunc(runforked)
result = ff.waitfinish()
if result.retval is not None:
report_dumps = marshal.loads(result.retval)
return [unserialize_report("testreport", x) for x in report_dumps]
else:
if result.exitstatus == EXITSTATUS_TESTEXIT:
py.test.exit("forked test item %s raised Exit" %(item,))
return [report_process_crash(item, result)]
def report_process_crash(item, result):
path, lineno = item._getfslineno()
info = ("%s:%s: running the test CRASHED with signal %d" %
(path, lineno, result.signal))
from _pytest import runner
call = runner.CallInfo(lambda: 0/0, "???")
call.excinfo = info
rep = runner.pytest_runtest_makereport(item, call)
if result.out:
rep.sections.append(("captured stdout", result.out))
if result.err:
rep.sections.append(("captured stderr", result.err))
return rep

View File

@@ -1,4 +1,5 @@
import difflib import difflib
from _pytest.runner import CollectReport
import pytest import pytest
import py import py
@@ -88,8 +89,9 @@ class EachScheduling:
elif self._removed2pending: elif self._removed2pending:
for deadnode in self._removed2pending: for deadnode in self._removed2pending:
if deadnode.gateway.spec == node.gateway.spec: if deadnode.gateway.spec == node.gateway.spec:
if collection != self.node2collection[deadnode]: dead_collection = self.node2collection[deadnode]
msg = report_collection_diff(self.collection, if collection != dead_collection:
msg = report_collection_diff(dead_collection,
collection, collection,
deadnode.gateway.id, deadnode.gateway.id,
node.gateway.id) node.gateway.id)
@@ -175,9 +177,10 @@ class LoadScheduling:
:log: A py.log.Producer instance. :log: A py.log.Producer instance.
:config: Config object, used for handling hooks.
""" """
def __init__(self, numnodes, log=None): def __init__(self, numnodes, log=None, config=None):
self.numnodes = numnodes self.numnodes = numnodes
self.node2collection = {} self.node2collection = {}
self.node2pending = {} self.node2pending = {}
@@ -187,6 +190,7 @@ class LoadScheduling:
self.log = py.log.Producer("loadsched") self.log = py.log.Producer("loadsched")
else: else:
self.log = log.loadsched self.log = log.loadsched
self.config = config
@property @property
def nodes(self): def nodes(self):
@@ -376,8 +380,9 @@ class LoadScheduling:
def _check_nodes_have_same_collection(self): def _check_nodes_have_same_collection(self):
"""Return True if all nodes have collected the same items. """Return True if all nodes have collected the same items.
If collections differ this returns False and logs the If collections differ, this method returns False while logging
collection differences as they are found. the collection differences and posting collection errors to
pytest_collectreport hook.
""" """
node_collection_items = list(self.node2collection.items()) node_collection_items = list(self.node2collection.items())
first_node, col = node_collection_items[0] first_node, col = node_collection_items[0]
@@ -390,8 +395,12 @@ class LoadScheduling:
node.gateway.id, node.gateway.id,
) )
if msg: if msg:
self.log(msg)
same_collection = False same_collection = False
self.log(msg)
if self.config is not None:
rep = CollectReport(node.gateway.id, 'failed', longrepr=msg,
result=[])
self.config.hook.pytest_collectreport(report=rep)
return same_collection return same_collection
@@ -446,8 +455,13 @@ class DSession:
self.countfailures = 0 self.countfailures = 0
self.maxfail = config.getvalue("maxfail") self.maxfail = config.getvalue("maxfail")
self.queue = queue.Queue() self.queue = queue.Queue()
self._session = None
self._failed_collection_errors = {} self._failed_collection_errors = {}
self._active_nodes = set() self._active_nodes = set()
self._failed_nodes_count = 0
self._max_slave_restart = self.config.getoption('max_slave_restart')
if self._max_slave_restart is not None:
self._max_slave_restart = int(self._max_slave_restart)
try: try:
self.terminal = config.pluginmanager.getplugin("terminalreporter") self.terminal = config.pluginmanager.getplugin("terminalreporter")
except KeyError: except KeyError:
@@ -479,12 +493,14 @@ class DSession:
self.nodemanager = NodeManager(self.config) self.nodemanager = NodeManager(self.config)
nodes = self.nodemanager.setup_nodes(putevent=self.queue.put) nodes = self.nodemanager.setup_nodes(putevent=self.queue.put)
self._active_nodes.update(nodes) self._active_nodes.update(nodes)
self._session = session
def pytest_sessionfinish(self, session): def pytest_sessionfinish(self, session):
"""Shutdown all nodes.""" """Shutdown all nodes."""
nm = getattr(self, 'nodemanager', None) # if not fully initialized nm = getattr(self, 'nodemanager', None) # if not fully initialized
if nm is not None: if nm is not None:
nm.teardown_nodes() nm.teardown_nodes()
self._session = None
def pytest_collection(self): def pytest_collection(self):
# prohibit collection of test items in master process # prohibit collection of test items in master process
@@ -494,7 +510,8 @@ class DSession:
numnodes = len(self.nodemanager.specs) numnodes = len(self.nodemanager.specs)
dist = self.config.getvalue("dist") dist = self.config.getvalue("dist")
if dist == "load": if dist == "load":
self.sched = LoadScheduling(numnodes, log=self.log) self.sched = LoadScheduling(numnodes, log=self.log,
config=self.config)
elif dist == "each": elif dist == "each":
self.sched = EachScheduling(numnodes, log=self.log) self.sched = EachScheduling(numnodes, log=self.log)
else: else:
@@ -570,8 +587,20 @@ class DSession:
else: else:
if crashitem: if crashitem:
self.handle_crashitem(crashitem, node) self.handle_crashitem(crashitem, node)
self.report_line("Replacing failed node %s" % node.gateway.id)
self._clone_node(node) self._failed_nodes_count += 1
maximum_reached = (self._max_slave_restart is not None and
self._failed_nodes_count > self._max_slave_restart)
if maximum_reached:
if self._max_slave_restart == 0:
msg = 'Slave restarting disabled'
else:
msg = "Maximum crashed slaves reached: %d" % \
self._max_slave_restart
self.report_line(msg)
else:
self.report_line("Replacing crashed slave %s" % node.gateway.id)
self._clone_node(node)
self._active_nodes.remove(node) self._active_nodes.remove(node)
def slave_collectionfinish(self, node, ids): def slave_collectionfinish(self, node, ids):
@@ -585,6 +614,9 @@ class DSession:
""" """
if self.shuttingdown: if self.shuttingdown:
return return
# tell session which items were effectively collected otherwise
# the master node will finish the session with EXIT_NOTESTSCOLLECTED
self._session.testscollected = len(ids)
self.sched.addnode_collection(node, ids) self.sched.addnode_collection(node, ids)
if self.terminal: if self.terminal:
self.trdist.setstatus(node.gateway.spec, "[%d]" % (len(ids))) self.trdist.setstatus(node.gateway.spec, "[%d]" % (len(ids)))

View File

@@ -11,6 +11,21 @@ import py, pytest
import sys import sys
import execnet import execnet
def pytest_addoption(parser):
group = parser.getgroup("xdist", "distributed and subprocess testing")
group._addoption('-f', '--looponfail',
action="store_true", dest="looponfail", default=False,
help="run tests in subprocess, wait for modified files "
"and re-run failing test set until all pass.")
def pytest_cmdline_main(config):
if config.getoption("looponfail"):
looponfail_main(config)
return 2 # looponfail only can get stop with ctrl-C anyway
def looponfail_main(config): def looponfail_main(config):
remotecontrol = RemoteControl(config) remotecontrol = RemoteControl(config)
rootdirs = config.getini("looponfailroots") rootdirs = config.getini("looponfailroots")
@@ -227,4 +242,3 @@ class StatRecorder:
changed = True changed = True
self.statcache = newstat self.statcache = newstat
return changed return changed

View File

@@ -1,18 +1,26 @@
import py import py
import pytest import pytest
def parse_numprocesses(s):
if s == 'auto':
import multiprocessing
return multiprocessing.cpu_count()
else:
return int(s)
def pytest_addoption(parser): def pytest_addoption(parser):
group = parser.getgroup("xdist", "distributed and subprocess testing") group = parser.getgroup("xdist", "distributed and subprocess testing")
group._addoption('-f', '--looponfail',
action="store_true", dest="looponfail", default=False,
help="run tests in subprocess, wait for modified files "
"and re-run failing test set until all pass.")
group._addoption('-n', dest="numprocesses", metavar="numprocesses", group._addoption('-n', dest="numprocesses", metavar="numprocesses",
action="store", type="int", action="store",
help="shortcut for '--dist=load --tx=NUM*popen'") type=parse_numprocesses,
group.addoption('--boxed', help="shortcut for '--dist=load --tx=NUM*popen', "
action="store_true", dest="boxed", default=False, "you can use 'auto' here for auto detection CPUs number on "
help="box each test run in a separate process (unix)") "host system")
group._addoption('--max-slave-restart', action="store", default=None,
help="maximum number of slaves that can be restarted "
"when crashed (set to zero to disable this feature)")
group._addoption('--dist', metavar="distmode", group._addoption('--dist', metavar="distmode",
action="store", choices=['load', 'each', 'no'], action="store", choices=['load', 'each', 'no'],
type="choice", dest="dist", default="no", type="choice", dest="dist", default="no",
@@ -45,21 +53,19 @@ def pytest_addoption(parser):
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
def pytest_addhooks(pluginmanager): def pytest_addhooks(pluginmanager):
from xdist import newhooks from xdist import newhooks
pluginmanager.addhooks(newhooks) # avoid warnings with pytest-2.8
method = getattr(pluginmanager, "add_hookspecs", None)
if method is None:
method = pluginmanager.addhooks
method(newhooks)
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# distributed testing initialization # distributed testing initialization
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
def pytest_cmdline_main(config):
check_options(config)
if config.getoption("looponfail"):
from xdist.looponfail import looponfail_main
looponfail_main(config)
return 2 # looponfail only can get stop with ctrl-C anyway
def pytest_configure(config, __multicall__): @pytest.mark.trylast
__multicall__.execute() def pytest_configure(config):
if config.getoption("dist") != "no": if config.getoption("dist") != "no":
from xdist.dsession import DSession from xdist.dsession import DSession
session = DSession(config) session = DSession(config)
@@ -67,10 +73,11 @@ def pytest_configure(config, __multicall__):
tr = config.pluginmanager.getplugin("terminalreporter") tr = config.pluginmanager.getplugin("terminalreporter")
tr.showfspath = False tr.showfspath = False
def check_options(config): @pytest.mark.tryfirst
def pytest_cmdline_main(config):
if config.option.numprocesses: if config.option.numprocesses:
config.option.dist = "load" config.option.dist = "load"
config.option.tx = ['popen'] * int(config.option.numprocesses) config.option.tx = ['popen'] * config.option.numprocesses
if config.option.distload: if config.option.distload:
config.option.dist = "load" config.option.dist = "load"
val = config.getvalue val = config.getvalue
@@ -82,50 +89,3 @@ def check_options(config):
elif val("dist") != "no": elif val("dist") != "no":
if usepdb: if usepdb:
raise pytest.UsageError("--pdb incompatible with distributing tests.") raise pytest.UsageError("--pdb incompatible with distributing tests.")
def pytest_runtest_protocol(item):
if item.config.getvalue("boxed"):
reports = forked_run_report(item)
for rep in reports:
item.ihook.pytest_runtest_logreport(report=rep)
return True
def forked_run_report(item):
# for now, we run setup/teardown in the subprocess
# XXX optionally allow sharing of setup/teardown
from _pytest.runner import runtestprotocol
EXITSTATUS_TESTEXIT = 4
import marshal
from xdist.remote import serialize_report
from xdist.slavemanage import unserialize_report
def runforked():
try:
reports = runtestprotocol(item, log=False)
except KeyboardInterrupt:
py.std.os._exit(EXITSTATUS_TESTEXIT)
return marshal.dumps([serialize_report(x) for x in reports])
ff = py.process.ForkedFunc(runforked)
result = ff.waitfinish()
if result.retval is not None:
report_dumps = marshal.loads(result.retval)
return [unserialize_report("testreport", x) for x in report_dumps]
else:
if result.exitstatus == EXITSTATUS_TESTEXIT:
py.test.exit("forked test item %s raised Exit" %(item,))
return [report_process_crash(item, result)]
def report_process_crash(item, result):
path, lineno = item._getfslineno()
info = ("%s:%s: running the test CRASHED with signal %d" %
(path, lineno, result.signal))
from _pytest import runner
call = runner.CallInfo(lambda: 0/0, "???")
call.excinfo = info
rep = runner.pytest_runtest_makereport(item, call)
if result.out:
rep.sections.append(("captured stdout", result.out))
if result.err:
rep.sections.append(("captured stderr", result.err))
return rep

View File

@@ -144,10 +144,7 @@ class HostRSync(execnet.RSync):
""" """
def __init__(self, sourcedir, *args, **kwargs): def __init__(self, sourcedir, *args, **kwargs):
self._synced = {} self._synced = {}
ignores= None self._ignores = kwargs.pop('ignores', None) or []
if 'ignores' in kwargs:
ignores = kwargs.pop('ignores')
self._ignores = ignores or []
super(HostRSync, self).__init__(sourcedir=sourcedir, **kwargs) super(HostRSync, self).__init__(sourcedir=sourcedir, **kwargs)
def filter(self, path): def filter(self, path):