Bump version, add changelog entry and move stuff around for added coverage reporting.

This commit is contained in:
Florian Schulze 2016-10-24 12:08:00 +02:00
parent 28621b0510
commit f229b573fa
10 changed files with 15 additions and 4 deletions

3
.gitignore vendored
View File

@ -1,6 +1,9 @@
/.cache/ /.cache/
/.coverage
/.tox/ /.tox/
/bin/ /bin/
/dist/
/htmlcov/
/include/ /include/
/lib/ /lib/
/pip-selfcheck.json /pip-selfcheck.json

View File

@ -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

View File

@ -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
------------------ ------------------

View File

@ -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=[

View File

@ -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 .*