Skip to content

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

License

Notifications You must be signed in to change notification settings

willsheffler/pytest-cpp

 
 

Repository files navigation

pytest-cpp

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

Supported Python versions version downloads ci coverage

Supports both Google Test and Boost::Test:

image

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.;

Usage

Once installed, when py.test runs it will search and run tests founds in executable files, detecting if the suites are Google or Boost tests automatically.

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

[pytest]
cpp_files=test_suite*

By default matches test_* and *_test executable files.

Requirements

  • Python 2.7+, Python 3.4+
  • pytest

Install

Install using pip:

$ pip install pytest-cpp

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!

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 75.0%
  • Python 23.5%
  • C 1.5%