Skip to main content

Multi core processing of unittests

Project description

pypi python version(s) pypi implementation pypi development status pypi latest version pypi downloads per month tested on which operating systems

A Python library/application for running unittests in parallel and merging results.

Installation

To install the latest release from PyPI, simply run:

pip install mpunittest

Or to install the latest development version, run:

git clone https://github.com/maximilianpilz/mpunittest
python -m pip install .

Quick Start

An example for running with 10 workers and generating an html file containing the results:

merging_runner = mpunittest.runner.MergingRunner(process_count=10)

merging_runner.discover_and_run(
    start_dir=pathlib.Path('path_to_search_in').resolve(),
    pattern="*.py",
    html_result_assets=mpunittest.runner.HtmlResultAssets(
        document_title='title of the html',
        document_file_name='name_of_the_html_file',
        result_path='unittest_results'
    )
)

An example for running with 10 workers and without any files being generated:

merging_runner = mpunittest.runner.MergingRunner(process_count=10)

result = merging_runner.discover_and_run(
    start_dir=pathlib.Path('path_to_search_in').resolve(),
    pattern="*.py"
)

print(result)

An example for turning on logging:

handler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
handler.setFormatter(formatter)
handler.setLevel(logging.INFO)
mpunittest.logging.logger.addHandler(handler)

# run tests here

mpunittest.logging.logger.getChild('your.script').info('result: %s', result)

An example for running without writing additional python code:

python -m mpunittest.run /Users/yourname/dev/python_projects/yourproject/src/tests -p "test*.py" -da -c 4

To see the help for running without writing additional python code:

python -m mpunittest.run --help

Licensing

Copyright (C) 2023 Maximilian Pilz

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpunittest-0.0.0a6.tar.gz (21.7 kB view details)

Uploaded Source

Built Distribution

mpunittest-0.0.0a6-py3-none-any.whl (33.2 kB view details)

Uploaded Python 3

File details

Details for the file mpunittest-0.0.0a6.tar.gz.

File metadata

  • Download URL: mpunittest-0.0.0a6.tar.gz
  • Upload date:
  • Size: 21.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for mpunittest-0.0.0a6.tar.gz
Algorithm Hash digest
SHA256 d2a89d7d82250654dd734030add7ba9aa795886e358f031cbd29c2400772ac94
MD5 e070cebdae73bff4c8cf3bda8467b013
BLAKE2b-256 f82cc379aa7be08e5550a7220a3fb1f1cd5c4d1bfdd556670252ade813da2d22

See more details on using hashes here.

File details

Details for the file mpunittest-0.0.0a6-py3-none-any.whl.

File metadata

  • Download URL: mpunittest-0.0.0a6-py3-none-any.whl
  • Upload date:
  • Size: 33.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for mpunittest-0.0.0a6-py3-none-any.whl
Algorithm Hash digest
SHA256 b386952b65c64555f0633dc5b467e79f654e1308dcf38ef3e924a752cb1f8cb6
MD5 21d8448b5642cb1b40fd3be5a8cc0ba5
BLAKE2b-256 8f320575fa54fe8804ba2d6455d4af64d2c46af4d4737efc8c166e13a95fd46c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page