Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b239199061 | ||
|
|
e4bcbbee78 | ||
|
|
f6308cad01 | ||
|
|
aa89c42ad7 | ||
|
|
40fa7b091d | ||
|
|
ad99d943de | ||
|
|
0d2480f7e3 | ||
|
|
8f90fb73db | ||
|
|
c5fadcd734 | ||
|
|
16d636391b | ||
|
|
948f13730d | ||
|
|
db896a9d33 | ||
|
|
cf45eab977 | ||
|
|
00b0464d4b | ||
|
|
b3a1bf3c2e | ||
|
|
3fb369c8ac | ||
|
|
16694a978d | ||
|
|
2dcb40799f | ||
|
|
14bafa6dd5 | ||
|
|
b51286aaa2 | ||
|
|
03ddee6620 | ||
|
|
e03566b7d6 | ||
|
|
46cf204c64 | ||
|
|
5b7eeab7dc | ||
|
|
9fd3b66292 | ||
|
|
fe48256f1a | ||
|
|
607d8288d4 | ||
|
|
e469fc7b80 | ||
|
|
7caf7437e3 | ||
|
|
457386f837 | ||
|
|
1d08799c82 | ||
|
|
ac5b9956bb | ||
|
|
995b34aadc |
@@ -1,20 +0,0 @@
|
|||||||
environment:
|
|
||||||
matrix:
|
|
||||||
- TOXENV: "py35-pytestlatest"
|
|
||||||
- TOXENV: "py36-pytestlatest"
|
|
||||||
- TOXENV: "py37-pytestlatest"
|
|
||||||
- TOXENV: "py38-pytestlatest"
|
|
||||||
- TOXENV: "py38-pytestmaster"
|
|
||||||
|
|
||||||
install:
|
|
||||||
- C:\Python38\python -m pip install -U pip setuptools virtualenv
|
|
||||||
- C:\Python38\python -m pip install -U tox setuptools_scm
|
|
||||||
|
|
||||||
build: false # Not a C# project, build stuff at the test step instead.
|
|
||||||
|
|
||||||
test_script:
|
|
||||||
- C:\Python38\python -m tox
|
|
||||||
|
|
||||||
# We don't deploy anything on tags with AppVeyor, we use Travis instead, so we
|
|
||||||
# might as well save resources
|
|
||||||
skip_tags: true
|
|
||||||
99
.github/workflows/main.yml
vendored
Normal file
99
.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
name: build
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
tox_env:
|
||||||
|
- "py35-pytestlatest"
|
||||||
|
- "py36-pytestlatest"
|
||||||
|
- "py37-pytestlatest"
|
||||||
|
- "py38-pytestlatest"
|
||||||
|
- "py39-pytestlatest"
|
||||||
|
- "py38-pytestmaster"
|
||||||
|
- "py38-psutil"
|
||||||
|
- "linting"
|
||||||
|
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
|
include:
|
||||||
|
- tox_env: "py35-pytestlatest"
|
||||||
|
python: "3.5"
|
||||||
|
- tox_env: "py36-pytestlatest"
|
||||||
|
python: "3.6"
|
||||||
|
- tox_env: "py37-pytestlatest"
|
||||||
|
python: "3.7"
|
||||||
|
- tox_env: "py38-pytestlatest"
|
||||||
|
python: "3.8"
|
||||||
|
- tox_env: "py39-pytestlatest"
|
||||||
|
python: "3.9"
|
||||||
|
- tox_env: "py38-pytestmaster"
|
||||||
|
python: "3.8"
|
||||||
|
- tox_env: "py38-psutil"
|
||||||
|
python: "3.8"
|
||||||
|
- tox_env: "linting"
|
||||||
|
python: "3.7"
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python }}
|
||||||
|
- name: Install tox
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install tox
|
||||||
|
- name: Test
|
||||||
|
run: |
|
||||||
|
tox -e ${{ matrix.tox_env }}
|
||||||
|
|
||||||
|
linting:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: "3.7"
|
||||||
|
- name: Install tox
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install tox
|
||||||
|
- name: Linting
|
||||||
|
run: |
|
||||||
|
tox -e linting
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
|
||||||
|
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
needs: [build, linting]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: "3.7"
|
||||||
|
- name: Install wheel
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install wheel
|
||||||
|
- name: Build package
|
||||||
|
run: |
|
||||||
|
python setup.py sdist bdist_wheel
|
||||||
|
- name: Publish package to PyPI
|
||||||
|
uses: pypa/gh-action-pypi-publish@master
|
||||||
|
with:
|
||||||
|
user: __token__
|
||||||
|
password: ${{ secrets.pypi_token }}
|
||||||
62
.travis.yml
62
.travis.yml
@@ -1,62 +0,0 @@
|
|||||||
dist: xenial
|
|
||||||
language: python
|
|
||||||
|
|
||||||
notifications:
|
|
||||||
irc:
|
|
||||||
channels:
|
|
||||||
- 'chat.freenode.net#pytest'
|
|
||||||
on_success: change
|
|
||||||
on_failure: change
|
|
||||||
skip_join: true
|
|
||||||
email:
|
|
||||||
- pytest-commit@python.org
|
|
||||||
|
|
||||||
install:
|
|
||||||
- pip install -U pip setuptools
|
|
||||||
- pip install tox setuptools_scm
|
|
||||||
script: tox
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- baseline
|
|
||||||
- test
|
|
||||||
- name: deploy
|
|
||||||
if: repo = pytest-dev/pytest-xdist AND tag IS present
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
include:
|
|
||||||
- stage: baseline
|
|
||||||
python: '3.7'
|
|
||||||
env: TOXENV=linting
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/.cache/pre-commit
|
|
||||||
- python: '3.8'
|
|
||||||
env: TOXENV=py38-pytestlatest
|
|
||||||
|
|
||||||
- stage: test
|
|
||||||
python: "3.5"
|
|
||||||
env: TOXENV=py35-pytestlatest
|
|
||||||
- python: "3.6"
|
|
||||||
env: TOXENV=py36-pytestlatest
|
|
||||||
- python: "3.7"
|
|
||||||
env: TOXENV=py37-pytestlatest
|
|
||||||
- python: "3.9-dev"
|
|
||||||
env: TOXENV=py39-pytestlatest
|
|
||||||
- python: "3.8"
|
|
||||||
env: TOXENV=py38-pytestmaster
|
|
||||||
|
|
||||||
- stage: deploy
|
|
||||||
python: '3.8'
|
|
||||||
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
|
|
||||||
repo: pytest-dev/pytest-xdist
|
|
||||||
@@ -1,3 +1,38 @@
|
|||||||
|
pytest-xdist 2.2.1 (2021-02-09)
|
||||||
|
===============================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------
|
||||||
|
|
||||||
|
- `#623 <https://github.com/pytest-dev/pytest-xdist/issues/623>`_: Gracefully handle the pending deprecation of Node.fspath by using config.rootpath for topdir.
|
||||||
|
|
||||||
|
|
||||||
|
pytest-xdist 2.2.0 (2020-12-14)
|
||||||
|
===============================
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
- `#608 <https://github.com/pytest-dev/pytest-xdist/issues/608>`_: Internal errors in workers are now propagated to the master node.
|
||||||
|
|
||||||
|
|
||||||
|
pytest-xdist 2.1.0 (2020-08-25)
|
||||||
|
===============================
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
- `#585 <https://github.com/pytest-dev/pytest-xdist/issues/585>`_: New ``pytest_xdist_auto_num_workers`` hook can be implemented by plugins or ``conftest.py`` files to control the number of workers when ``--numprocesses=auto`` is given in the command-line.
|
||||||
|
|
||||||
|
|
||||||
|
Trivial Changes
|
||||||
|
---------------
|
||||||
|
|
||||||
|
- `#585 <https://github.com/pytest-dev/pytest-xdist/issues/585>`_: ``psutil`` has proven to make ``pytest-xdist`` installation in certain platforms and containers problematic, so to use it for automatic number of CPUs detection users need to install the ``psutil`` extra::
|
||||||
|
|
||||||
|
pip install pytest-xdist[psutil]
|
||||||
|
|
||||||
|
|
||||||
pytest-xdist 2.0.0 (2020-08-12)
|
pytest-xdist 2.0.0 (2020-08-12)
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
|
|||||||
22
README.rst
22
README.rst
@@ -11,13 +11,8 @@
|
|||||||
:alt: Python versions
|
:alt: Python versions
|
||||||
:target: https://pypi.python.org/pypi/pytest-xdist
|
:target: https://pypi.python.org/pypi/pytest-xdist
|
||||||
|
|
||||||
.. image:: https://travis-ci.org/pytest-dev/pytest-xdist.svg?branch=master
|
.. image:: https://github.com/pytest-dev/pytest-xdist/workflows/build/badge.svg
|
||||||
:alt: Travis CI build status
|
:target: https://github.com/pytest-dev/pytest-xdist/actions
|
||||||
: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
|
|
||||||
|
|
||||||
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
||||||
:target: https://github.com/ambv/black
|
:target: https://github.com/ambv/black
|
||||||
@@ -57,17 +52,18 @@ Install the plugin with::
|
|||||||
|
|
||||||
pip install pytest-xdist
|
pip install pytest-xdist
|
||||||
|
|
||||||
or use the package in develop/in-place mode with
|
|
||||||
a checkout of the `pytest-xdist repository`_ ::
|
|
||||||
|
|
||||||
pip install --editable .
|
To use ``psutil`` for detection of the number of CPUs available, install the ``psutil`` extra::
|
||||||
|
|
||||||
|
pip install pytest-xdist[psutil]
|
||||||
|
|
||||||
|
|
||||||
.. _parallelization:
|
.. _parallelization:
|
||||||
|
|
||||||
Speed up test runs by sending tests to multiple CPUs
|
Speed up test runs by sending tests to multiple CPUs
|
||||||
----------------------------------------------------
|
----------------------------------------------------
|
||||||
|
|
||||||
To send tests to multiple CPUs, use the ``-n`` (or ``-numprocesses``) option::
|
To send tests to multiple CPUs, use the ``-n`` (or ``--numprocesses``) option::
|
||||||
|
|
||||||
pytest -n NUMCPUS
|
pytest -n NUMCPUS
|
||||||
|
|
||||||
@@ -126,7 +122,7 @@ Here is the code:
|
|||||||
|
|
||||||
@pytest.fixture(scope="session")
|
@pytest.fixture(scope="session")
|
||||||
def session_data(tmp_path_factory, worker_id):
|
def session_data(tmp_path_factory, worker_id):
|
||||||
if not worker_id:
|
if worker_id == "master":
|
||||||
# not executing in with multiple workers, just produce the data and let
|
# not executing in with multiple workers, just produce the data and let
|
||||||
# pytest's fixture caching do its job
|
# pytest's fixture caching do its job
|
||||||
return produce_expensive_data()
|
return produce_expensive_data()
|
||||||
@@ -246,7 +242,7 @@ at once. The specifications strings use the `xspec syntax`_.
|
|||||||
|
|
||||||
.. _`xspec syntax`: http://codespeak.net/execnet/basics.html#xspec
|
.. _`xspec syntax`: http://codespeak.net/execnet/basics.html#xspec
|
||||||
|
|
||||||
.. _`socketserver.py`: http://bitbucket.org/hpk42/execnet/raw/2af991418160/execnet/script/socketserver.py
|
.. _`socketserver.py`: https://raw.githubusercontent.com/pytest-dev/execnet/master/execnet/script/socketserver.py
|
||||||
|
|
||||||
.. _`execnet`: http://codespeak.net/execnet
|
.. _`execnet`: http://codespeak.net/execnet
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
[bdist_wheel]
|
|
||||||
universal = 1
|
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
license_file = LICENSE
|
license_file = LICENSE
|
||||||
|
|
||||||
|
|||||||
5
setup.py
5
setup.py
@@ -1,6 +1,6 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
install_requires = ["execnet>=1.1", "psutil>=3.0.0", "pytest>=6.0.0", "pytest-forked"]
|
install_requires = ["execnet>=1.1", "pytest>=6.0.0", "pytest-forked"]
|
||||||
|
|
||||||
|
|
||||||
with open("README.rst") as f:
|
with open("README.rst") as f:
|
||||||
@@ -18,7 +18,7 @@ setup(
|
|||||||
platforms=["linux", "osx", "win32"],
|
platforms=["linux", "osx", "win32"],
|
||||||
packages=find_packages(where="src"),
|
packages=find_packages(where="src"),
|
||||||
package_dir={"": "src"},
|
package_dir={"": "src"},
|
||||||
extras_require={"testing": ["filelock"]},
|
extras_require={"testing": ["filelock"], "psutil": ["psutil>=3.0"]},
|
||||||
entry_points={
|
entry_points={
|
||||||
"pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"]
|
"pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"]
|
||||||
},
|
},
|
||||||
@@ -44,5 +44,6 @@ setup(
|
|||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -174,6 +174,24 @@ class DSession:
|
|||||||
assert not crashitem, (crashitem, node)
|
assert not crashitem, (crashitem, node)
|
||||||
self._active_nodes.remove(node)
|
self._active_nodes.remove(node)
|
||||||
|
|
||||||
|
def worker_internal_error(self, node, formatted_error):
|
||||||
|
"""
|
||||||
|
pytest_internalerror() was called on the worker.
|
||||||
|
|
||||||
|
pytest_internalerror() arguments are an excinfo and an excrepr, which can't
|
||||||
|
be serialized, so we go with a poor man's solution of raising an exception
|
||||||
|
here ourselves using the formatted message.
|
||||||
|
"""
|
||||||
|
self._active_nodes.remove(node)
|
||||||
|
try:
|
||||||
|
assert False, formatted_error
|
||||||
|
except AssertionError:
|
||||||
|
from _pytest._code import ExceptionInfo
|
||||||
|
|
||||||
|
excinfo = ExceptionInfo.from_current()
|
||||||
|
excrepr = excinfo.getrepr()
|
||||||
|
self.config.hook.pytest_internalerror(excrepr=excrepr, excinfo=excinfo)
|
||||||
|
|
||||||
def worker_errordown(self, node, error):
|
def worker_errordown(self, node, error):
|
||||||
"""Emitted by the WorkerController when a node dies."""
|
"""Emitted by the WorkerController when a node dies."""
|
||||||
self.config.hook.pytest_testnodedown(node=node, error=error)
|
self.config.hook.pytest_testnodedown(node=node, error=error)
|
||||||
|
|||||||
@@ -55,3 +55,13 @@ def pytest_xdist_node_collection_finished(node, ids):
|
|||||||
@pytest.mark.firstresult
|
@pytest.mark.firstresult
|
||||||
def pytest_xdist_make_scheduler(config, log):
|
def pytest_xdist_make_scheduler(config, log):
|
||||||
""" return a node scheduler implementation """
|
""" return a node scheduler implementation """
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.firstresult
|
||||||
|
def pytest_xdist_auto_num_workers(config):
|
||||||
|
"""
|
||||||
|
Return the number of workers to spawn when ``--numprocesses=auto`` is given in the
|
||||||
|
command-line.
|
||||||
|
|
||||||
|
.. versionadded:: 2.1
|
||||||
|
"""
|
||||||
|
|||||||
@@ -1,21 +1,43 @@
|
|||||||
|
import os
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
import psutil
|
|
||||||
import py
|
import py
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
def auto_detect_cpus():
|
def pytest_xdist_auto_num_workers():
|
||||||
return psutil.cpu_count(logical=False) or psutil.cpu_count() or 1
|
try:
|
||||||
|
import psutil
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
count = psutil.cpu_count(logical=False) or psutil.cpu_count()
|
||||||
|
if count:
|
||||||
|
return count
|
||||||
|
try:
|
||||||
|
from os import sched_getaffinity
|
||||||
|
|
||||||
|
def cpu_count():
|
||||||
|
return len(sched_getaffinity(0))
|
||||||
|
|
||||||
class AutoInt(int):
|
except ImportError:
|
||||||
"""Mark value as auto-detected."""
|
if os.environ.get("TRAVIS") == "true":
|
||||||
|
# workaround https://bitbucket.org/pypy/pypy/issues/2375
|
||||||
|
return 2
|
||||||
|
try:
|
||||||
|
from os import cpu_count
|
||||||
|
except ImportError:
|
||||||
|
from multiprocessing import cpu_count
|
||||||
|
try:
|
||||||
|
n = cpu_count()
|
||||||
|
except NotImplementedError:
|
||||||
|
return 1
|
||||||
|
return n if n else 1
|
||||||
|
|
||||||
|
|
||||||
def parse_numprocesses(s):
|
def parse_numprocesses(s):
|
||||||
if s == "auto":
|
if s == "auto":
|
||||||
return AutoInt(auto_detect_cpus())
|
return "auto"
|
||||||
elif s is not None:
|
elif s is not None:
|
||||||
return int(s)
|
return int(s)
|
||||||
|
|
||||||
@@ -168,12 +190,13 @@ def pytest_configure(config):
|
|||||||
@pytest.mark.tryfirst
|
@pytest.mark.tryfirst
|
||||||
def pytest_cmdline_main(config):
|
def pytest_cmdline_main(config):
|
||||||
usepdb = config.getoption("usepdb", False) # a core option
|
usepdb = config.getoption("usepdb", False) # a core option
|
||||||
if isinstance(config.option.numprocesses, AutoInt):
|
if config.option.numprocesses == "auto":
|
||||||
if usepdb:
|
if usepdb:
|
||||||
config.option.numprocesses = 0
|
config.option.numprocesses = 0
|
||||||
config.option.dist = "no"
|
config.option.dist = "no"
|
||||||
else:
|
else:
|
||||||
config.option.numprocesses = int(config.option.numprocesses)
|
auto_num_cpus = config.hook.pytest_xdist_auto_num_workers(config=config)
|
||||||
|
config.option.numprocesses = auto_num_cpus
|
||||||
|
|
||||||
if config.option.numprocesses:
|
if config.option.numprocesses:
|
||||||
if config.option.dist == "no":
|
if config.option.dist == "no":
|
||||||
|
|||||||
@@ -33,8 +33,10 @@ class WorkerInteractor:
|
|||||||
self.channel.send((name, kwargs))
|
self.channel.send((name, kwargs))
|
||||||
|
|
||||||
def pytest_internalerror(self, excrepr):
|
def pytest_internalerror(self, excrepr):
|
||||||
for line in str(excrepr).split("\n"):
|
formatted_error = str(excrepr)
|
||||||
|
for line in formatted_error.split("\n"):
|
||||||
self.log("IERROR>", line)
|
self.log("IERROR>", line)
|
||||||
|
interactor.sendevent("internal_error", formatted_error=formatted_error)
|
||||||
|
|
||||||
def pytest_sessionstart(self, session):
|
def pytest_sessionstart(self, session):
|
||||||
self.session = session
|
self.session = session
|
||||||
@@ -91,9 +93,14 @@ class WorkerInteractor:
|
|||||||
)
|
)
|
||||||
|
|
||||||
def pytest_collection_finish(self, session):
|
def pytest_collection_finish(self, session):
|
||||||
|
try:
|
||||||
|
topdir = str(self.config.rootpath)
|
||||||
|
except AttributeError: # pytest <= 6.1.0
|
||||||
|
topdir = str(self.config.rootdir)
|
||||||
|
|
||||||
self.sendevent(
|
self.sendevent(
|
||||||
"collectionfinish",
|
"collectionfinish",
|
||||||
topdir=str(session.fspath),
|
topdir=topdir,
|
||||||
ids=[item.nodeid for item in session.items],
|
ids=[item.nodeid for item in session.items],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -324,6 +324,8 @@ class WorkerController:
|
|||||||
self.log("ignoring {}({})".format(eventname, kwargs))
|
self.log("ignoring {}({})".format(eventname, kwargs))
|
||||||
elif eventname == "workerready":
|
elif eventname == "workerready":
|
||||||
self.notify_inproc(eventname, node=self, **kwargs)
|
self.notify_inproc(eventname, node=self, **kwargs)
|
||||||
|
elif eventname == "internal_error":
|
||||||
|
self.notify_inproc(eventname, node=self, **kwargs)
|
||||||
elif eventname == "workerfinished":
|
elif eventname == "workerfinished":
|
||||||
self._down = True
|
self._down = True
|
||||||
self.workeroutput = kwargs["workeroutput"]
|
self.workeroutput = kwargs["workeroutput"]
|
||||||
|
|||||||
@@ -772,19 +772,23 @@ class TestWarnings:
|
|||||||
|
|
||||||
testdir.makeconftest(
|
testdir.makeconftest(
|
||||||
"""
|
"""
|
||||||
def pytest_warning_captured():
|
def pytest_warning_captured(warning_message):
|
||||||
assert False, "this hook should not be called in this version"
|
if warning_message == "my custom worker warning":
|
||||||
|
assert False, (
|
||||||
|
"this hook should not be called from workers "
|
||||||
|
"in this version: {}"
|
||||||
|
).format(warning_message)
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
testdir.makepyfile(
|
testdir.makepyfile(
|
||||||
"""
|
"""
|
||||||
import warnings
|
import warnings
|
||||||
def test():
|
def test():
|
||||||
warnings.warn("custom warning")
|
warnings.warn("my custom worker warning")
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
result = testdir.runpytest("-n1")
|
result = testdir.runpytest("-n1")
|
||||||
result.stdout.fnmatch_lines(["* 1 passed in *"])
|
result.stdout.fnmatch_lines(["*1 passed*"])
|
||||||
result.stdout.no_fnmatch_line("*this hook should not be called in this version")
|
result.stdout.no_fnmatch_line("*this hook should not be called in this version")
|
||||||
|
|
||||||
@pytest.mark.parametrize("n", ["-n0", "-n1"])
|
@pytest.mark.parametrize("n", ["-n0", "-n1"])
|
||||||
@@ -1134,6 +1138,18 @@ def test_internal_error_with_maxfail(testdir):
|
|||||||
assert "INTERNALERROR" not in result.stderr.str()
|
assert "INTERNALERROR" not in result.stderr.str()
|
||||||
|
|
||||||
|
|
||||||
|
def test_internal_errors_propagate_to_master(testdir):
|
||||||
|
testdir.makeconftest(
|
||||||
|
"""
|
||||||
|
def pytest_collection_modifyitems():
|
||||||
|
raise RuntimeError("Some runtime error")
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
testdir.makepyfile("def test(): pass")
|
||||||
|
result = testdir.runpytest("-n1")
|
||||||
|
result.stdout.fnmatch_lines(["*RuntimeError: Some runtime error*"])
|
||||||
|
|
||||||
|
|
||||||
class TestLoadScope:
|
class TestLoadScope:
|
||||||
def test_by_module(self, testdir):
|
def test_by_module(self, testdir):
|
||||||
test_file = """
|
test_file = """
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
|
from contextlib import suppress
|
||||||
|
|
||||||
import py
|
import py
|
||||||
import execnet
|
import execnet
|
||||||
from xdist.workermanage import NodeManager
|
from xdist.workermanage import NodeManager
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
def test_dist_incompatibility_messages(testdir):
|
def test_dist_incompatibility_messages(testdir):
|
||||||
result = testdir.runpytest("--pdb", "--looponfail")
|
result = testdir.runpytest("--pdb", "--looponfail")
|
||||||
@@ -35,15 +39,28 @@ def test_dist_options(testdir):
|
|||||||
|
|
||||||
|
|
||||||
def test_auto_detect_cpus(testdir, monkeypatch):
|
def test_auto_detect_cpus(testdir, monkeypatch):
|
||||||
import psutil
|
import os
|
||||||
from xdist.plugin import pytest_cmdline_main as check_options
|
from xdist.plugin import pytest_cmdline_main as check_options
|
||||||
|
|
||||||
monkeypatch.setattr(psutil, "cpu_count", lambda logical=True: 99)
|
with suppress(ImportError):
|
||||||
|
import psutil
|
||||||
|
|
||||||
|
monkeypatch.setattr(psutil, "cpu_count", lambda logical=True: None)
|
||||||
|
|
||||||
|
if hasattr(os, "sched_getaffinity"):
|
||||||
|
monkeypatch.setattr(os, "sched_getaffinity", lambda _pid: set(range(99)))
|
||||||
|
elif hasattr(os, "cpu_count"):
|
||||||
|
monkeypatch.setattr(os, "cpu_count", lambda: 99)
|
||||||
|
else:
|
||||||
|
import multiprocessing
|
||||||
|
|
||||||
|
monkeypatch.setattr(multiprocessing, "cpu_count", lambda: 99)
|
||||||
|
|
||||||
config = testdir.parseconfigure("-n2")
|
config = testdir.parseconfigure("-n2")
|
||||||
assert config.getoption("numprocesses") == 2
|
assert config.getoption("numprocesses") == 2
|
||||||
|
|
||||||
config = testdir.parseconfigure("-nauto")
|
config = testdir.parseconfigure("-nauto")
|
||||||
|
check_options(config)
|
||||||
assert config.getoption("numprocesses") == 99
|
assert config.getoption("numprocesses") == 99
|
||||||
|
|
||||||
config = testdir.parseconfigure("-nauto", "--pdb")
|
config = testdir.parseconfigure("-nauto", "--pdb")
|
||||||
@@ -52,9 +69,37 @@ def test_auto_detect_cpus(testdir, monkeypatch):
|
|||||||
assert config.getoption("numprocesses") == 0
|
assert config.getoption("numprocesses") == 0
|
||||||
assert config.getoption("dist") == "no"
|
assert config.getoption("dist") == "no"
|
||||||
|
|
||||||
monkeypatch.setattr(psutil, "cpu_count", lambda logical=True: None)
|
monkeypatch.delattr(os, "sched_getaffinity", raising=False)
|
||||||
|
monkeypatch.setenv("TRAVIS", "true")
|
||||||
config = testdir.parseconfigure("-nauto")
|
config = testdir.parseconfigure("-nauto")
|
||||||
assert config.getoption("numprocesses") == 1
|
check_options(config)
|
||||||
|
assert config.getoption("numprocesses") == 2
|
||||||
|
|
||||||
|
|
||||||
|
def test_auto_detect_cpus_psutil(testdir, monkeypatch):
|
||||||
|
from xdist.plugin import pytest_cmdline_main as check_options
|
||||||
|
|
||||||
|
psutil = pytest.importorskip("psutil")
|
||||||
|
|
||||||
|
monkeypatch.setattr(psutil, "cpu_count", lambda logical=True: 42)
|
||||||
|
|
||||||
|
config = testdir.parseconfigure("-nauto")
|
||||||
|
check_options(config)
|
||||||
|
assert config.getoption("numprocesses") == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_hook_auto_num_workers(testdir, monkeypatch):
|
||||||
|
from xdist.plugin import pytest_cmdline_main as check_options
|
||||||
|
|
||||||
|
testdir.makeconftest(
|
||||||
|
"""
|
||||||
|
def pytest_xdist_auto_num_workers():
|
||||||
|
return 42
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
config = testdir.parseconfigure("-nauto")
|
||||||
|
check_options(config)
|
||||||
|
assert config.getoption("numprocesses") == 42
|
||||||
|
|
||||||
|
|
||||||
def test_boxed_with_collect_only(testdir):
|
def test_boxed_with_collect_only(testdir):
|
||||||
|
|||||||
21
tox.ini
21
tox.ini
@@ -3,9 +3,9 @@ envlist=
|
|||||||
linting
|
linting
|
||||||
py{35,36,37,38,39}-pytestlatest
|
py{35,36,37,38,39}-pytestlatest
|
||||||
py38-pytestmaster
|
py38-pytestmaster
|
||||||
|
py38-psutil
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
passenv = USER USERNAME
|
|
||||||
extras = testing
|
extras = testing
|
||||||
deps =
|
deps =
|
||||||
pytestlatest: pytest
|
pytestlatest: pytest
|
||||||
@@ -13,9 +13,18 @@ deps =
|
|||||||
commands=
|
commands=
|
||||||
pytest {posargs}
|
pytest {posargs}
|
||||||
|
|
||||||
|
[testenv:py38-psutil]
|
||||||
|
extras =
|
||||||
|
testing
|
||||||
|
psutil
|
||||||
|
deps = pytest
|
||||||
|
commands =
|
||||||
|
pytest {posargs:-k psutil}
|
||||||
|
|
||||||
[testenv:linting]
|
[testenv:linting]
|
||||||
skipsdist = True
|
skip_install = True
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
|
passenv = PRE_COMMIT_HOME
|
||||||
deps =
|
deps =
|
||||||
pre-commit
|
pre-commit
|
||||||
commands = pre-commit run --all-files --show-diff-on-failure
|
commands = pre-commit run --all-files --show-diff-on-failure
|
||||||
@@ -28,12 +37,14 @@ skipsdist = True
|
|||||||
usedevelop = True
|
usedevelop = True
|
||||||
passenv = *
|
passenv = *
|
||||||
deps =
|
deps =
|
||||||
towncrier
|
towncrier
|
||||||
commands =
|
commands =
|
||||||
towncrier --version {posargs} --yes
|
towncrier --version {posargs} --yes
|
||||||
|
|
||||||
[pytest]
|
[pytest]
|
||||||
addopts = -ra
|
# pytest-services also defines a worker_id fixture, disable
|
||||||
|
# it so they don't conflict with each other (#611).
|
||||||
|
addopts = -ra -p no:pytest-services
|
||||||
testpaths = testing
|
testpaths = testing
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
|
|||||||
Reference in New Issue
Block a user