Skip to content

Commit e5e3595

Browse files
committed
Merge branch 'release-1.0.0'
2 parents cc232db + 8d9fb73 commit e5e3595

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

.pytest.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.0.1
2+
3+
- Use universal newlines for running Google tests (#33).
4+
Thanks @elkin for the PR.
5+
16
# 0.4.5
27

38
- Properly handle fatal errors in Boost.Test.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
setup(
55
name="pytest-cpp",
6-
version='0.4.5',
6+
use_scm_version=True,
7+
setup_requires=['setuptools_scm'],
78
packages=['pytest_cpp'],
89
entry_points={
910
'pytest11': ['cpp = pytest_cpp.plugin'],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ deps=pytest
77
pytest-xdist
88
coverage
99
commands=
10-
coverage run --source=pytest_cpp .pytest.py
10+
coverage run --source=pytest_cpp -m pytest tests
1111
py.test -n8 tests

0 commit comments

Comments
 (0)