Skip to content

Commit c4163cd

Browse files
authored
Merge pull request #54 from nicoddemus/release-1.4.0
2 parents 1726192 + 1c898a6 commit c4163cd

7 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.4.0
2+
3+
- New `cpp_verbose` configuration option prints the full output of the C++ test runner as the test finishes. Thanks to @dajose for contributing.
4+
5+
- Now the output of the C++ test run is shown in its own section during test failure, similar to the `captured out` and `captured err` sections shown by pytest. Thanks to @dajose for contributing.
6+
7+
18
# 1.3.0
29

310
- New `cpp_harness` configuration option allows users to add prefix arguments when running the C++ test runner, allowing to use tools like `valgrind`. Thanks to @dajose for contributing!

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use_scm_version=True,
77
setup_requires=["setuptools_scm"],
88
packages=["pytest_cpp"],
9+
package_dir={"": "src"},
910
entry_points={"pytest11": ["cpp = pytest_cpp.plugin"],},
1011
install_requires=["pytest !=5.4.0, !=5.4.1", "colorama",],
1112
# metadata for upload to PyPI
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def pytest_addoption(parser):
8888
"cpp_verbose",
8989
type="bool",
9090
default=False,
91-
help="print the test output right after it ran, requieres -s",
91+
help="print the test output right after it ran, requires -s",
9292
)
9393

9494

0 commit comments

Comments
 (0)