Skip to main content

Use pytest's runner to discover and execute C++ tests

Project description

Supported Python versions version anaconda ci black

Use pytest runner to discover and execute C++ tests.

Supports Google Test, Boost.Test, and Catch2:

This brings several benefits:

  • Allows you to run all your tests in multi-language projects with a single command;

  • Execute C++ tests in parallel using pytest-xdist plugin;

  • Use --junitxml option to produce a single and uniform xml file with all your test suite results;

  • Filter which tests to run using standard test filtering capabilities, such as by file names, directories, keywords by using the -k option, etc.;

Installation

Install using pip:

$ pip install pytest-cpp

Usage

$ pytest

Once installed, pytest runs will search and run tests found in executable files, detecting if the suites are Google, Boost, or Catch2 tests automatically.

Configuration Options

Following are the options that can be put in the pytest configuration file related to pytest-cpp.

cpp_files

You can configure which files are tested for suites by using the cpp_files ini configuration option:

[pytest]
cpp_files = test_suite*

By default matches test_* and *_test executable files.

cpp_arguments

Arguments to the C++ tests can be provided with the cpp_arguments ini configuration option.

For example:

[pytest]
cpp_arguments =-v --log-dir=logs

You can change this option directly in the command-line using pytest’s -o option:

$ pytest -o cpp_arguments='-v --log-dir=logs'

Important: do not pass filtering arguments (for example --gtest_filter), as this will conflict with the plugin functionality and behave incorrectly.

To filter tests, use the standard pytest filtering facilities (such as -k).

cpp_ignore_py_files

This option defaults to True and configures the plugin to ignore *.py files that would otherwise match the cpp_files option.

Set it to False if you have C++ executable files that end with the *.py extension.

[pytest]
cpp_ignore_py_files = False

cpp_harness

This option allows the usage of tools that are used by invoking them on the console wrapping the test binary, like valgrind and memcheck:

[pytest]
cpp_harness = valgrind --tool=memcheck

cpp_harness_collect

This option allows the usage of tools or emulators (like wine or qemu) that are used by invoking them on the console wrapping the test binary during a test collection.

Might be used in the combination with cpp_harness to run a binary in emulators, like wine or qemu in cross-compilation targets.

[pytest]
cpp_harness_collect = qemu-x86_64 -L libs/

or

[pytest]
cpp_harness_collect = qemu-x86_64 -L libs/
cpp_harness = qemu-x86_64 -L libs/

Changelog

Please consult CHANGELOG.

Support

All feature requests and bugs are welcome, so please make sure to add feature requests and bugs to the issues page!

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

pytest_cpp-2.6.0.tar.gz (465.5 kB view details)

Uploaded Source

Built Distribution

pytest_cpp-2.6.0-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file pytest_cpp-2.6.0.tar.gz.

File metadata

  • Download URL: pytest_cpp-2.6.0.tar.gz
  • Upload date:
  • Size: 465.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.10

File hashes

Hashes for pytest_cpp-2.6.0.tar.gz
Algorithm Hash digest
SHA256 c2f49d3c038539ac84786a94d852e4f4619c34c95979c2bc69c20b3bdf051d85
MD5 b4cefff2c9aadf20e613673bda52259a
BLAKE2b-256 cfa1c2679d7ff2da20a0f89c7820ae2739cde739eac9b43c192531117b31b5f4

See more details on using hashes here.

File details

Details for the file pytest_cpp-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_cpp-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.10

File hashes

Hashes for pytest_cpp-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b33de94609450feea2fba9efff3558b8ac8f1fdf40a99e263b395d4798b911bb
MD5 5212bc9b73ed86a76b49ded963c946f1
BLAKE2b-256 2a44dc2f5d53165264ae5831f361fe7723c45da05718a97015b2eddc452cf503

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