Bump version, add changelog entry and move stuff around for added coverage reporting.
This commit is contained in:
parent
28621b0510
commit
f229b573fa
|
@ -1,6 +1,9 @@
|
||||||
/.cache/
|
/.cache/
|
||||||
|
/.coverage
|
||||||
/.tox/
|
/.tox/
|
||||||
/bin/
|
/bin/
|
||||||
|
/dist/
|
||||||
|
/htmlcov/
|
||||||
/include/
|
/include/
|
||||||
/lib/
|
/lib/
|
||||||
/pip-selfcheck.json
|
/pip-selfcheck.json
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
include README.rst
|
include README.rst
|
||||||
include tox.ini
|
include tox.ini
|
||||||
include LICENSE
|
include LICENSE
|
||||||
include test*.py
|
include tests/*.py
|
||||||
|
|
|
@ -51,6 +51,13 @@ Example
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
0.2.0 - Unreleased
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- Add ``filterwarnings`` option.
|
||||||
|
[Carreau (Matthias Bussonnier)]
|
||||||
|
|
||||||
|
|
||||||
0.1.0 - 2016-06-27
|
0.1.0 - 2016-06-27
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -6,11 +6,11 @@ setup(
|
||||||
description='pytest plugin to list Python warnings in pytest report',
|
description='pytest plugin to list Python warnings in pytest report',
|
||||||
long_description=open("README.rst").read(),
|
long_description=open("README.rst").read(),
|
||||||
license="MIT license",
|
license="MIT license",
|
||||||
version='0.1.0',
|
version='0.2.0',
|
||||||
author='Florian Schulze',
|
author='Florian Schulze',
|
||||||
author_email='florian.schulze@gmx.net',
|
author_email='florian.schulze@gmx.net',
|
||||||
url='https://github.com/fschulze/pytest-warnings',
|
url='https://github.com/fschulze/pytest-warnings',
|
||||||
py_modules=["pytest_warnings"],
|
packages=['pytest_warnings'],
|
||||||
entry_points={'pytest11': ['pytest_warnings = pytest_warnings']},
|
entry_points={'pytest11': ['pytest_warnings = pytest_warnings']},
|
||||||
install_requires=['pytest'],
|
install_requires=['pytest'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
3
tox.ini
3
tox.ini
|
@ -5,6 +5,7 @@ envlist = py27,py33,py34,py35
|
||||||
usedevelop = true
|
usedevelop = true
|
||||||
deps =
|
deps =
|
||||||
pytest
|
pytest
|
||||||
|
pytest-cov
|
||||||
pytest-flakes
|
pytest-flakes
|
||||||
pytest-pep8
|
pytest-pep8
|
||||||
coverage
|
coverage
|
||||||
|
@ -12,6 +13,6 @@ commands =
|
||||||
{envbindir}/py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
|
{envbindir}/py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
|
||||||
|
|
||||||
[pytest]
|
[pytest]
|
||||||
addopts = --flakes --pep8
|
addopts = --flakes --pep8 --cov pytest_warnings --cov tests --no-cov-on-fail
|
||||||
pep8ignore = E501
|
pep8ignore = E501
|
||||||
norecursedirs = bin lib include Scripts .*
|
norecursedirs = bin lib include Scripts .*
|
||||||
|
|
Loading…
Reference in New Issue