We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4557028 commit bc3316aCopy full SHA for bc3316a
2 files changed
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+# 0.4.4
2
+
3
+- Properly handle fixture failures in Boost.Test.
4
+ Thanks @fj128 for the PR.
5
6
# 0.4.3
7
8
- Use XML in CAPS since beginning at Boost 1.61 the parameter value is case sensitive (#29).
tests/test_pytest_cpp.py
@@ -140,7 +140,7 @@ def test_boost_fixture_setup_error(exes):
140
failures = facade.run_test(exes.get('boost_fixture_setup_error'), '<unused>')
141
assert len(failures) == 1
142
143
- [fail1] = failures
+ fail1 = failures[0]
144
colors = ('red', 'bold')
145
assert fail1.get_lines() == [
146
('Test setup error: std::runtime_error: This is a global fixture init failure', colors)]
0 commit comments