We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc232db + 8d9fb73 commit e5e3595Copy full SHA for e5e3595
4 files changed
.pytest.py
CHANGELOG.md
@@ -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
6
# 0.4.5
7
8
- Properly handle fatal errors in Boost.Test.
setup.py
@@ -3,7 +3,8 @@
setup(
name="pytest-cpp",
- version='0.4.5',
+ use_scm_version=True,
+ setup_requires=['setuptools_scm'],
packages=['pytest_cpp'],
9
entry_points={
10
'pytest11': ['cpp = pytest_cpp.plugin'],
tox.ini
@@ -7,5 +7,5 @@ deps=pytest
pytest-xdist
coverage
commands=
- coverage run --source=pytest_cpp .pytest.py
+ coverage run --source=pytest_cpp -m pytest tests
11
py.test -n8 tests
0 commit comments