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/
|
||||
/.coverage
|
||||
/.tox/
|
||||
/bin/
|
||||
/dist/
|
||||
/htmlcov/
|
||||
/include/
|
||||
/lib/
|
||||
/pip-selfcheck.json
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
include README.rst
|
||||
include tox.ini
|
||||
include LICENSE
|
||||
include test*.py
|
||||
include tests/*.py
|
||||
|
|
|
@ -51,6 +51,13 @@ Example
|
|||
Changes
|
||||
=======
|
||||
|
||||
0.2.0 - Unreleased
|
||||
------------------
|
||||
|
||||
- Add ``filterwarnings`` option.
|
||||
[Carreau (Matthias Bussonnier)]
|
||||
|
||||
|
||||
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',
|
||||
long_description=open("README.rst").read(),
|
||||
license="MIT license",
|
||||
version='0.1.0',
|
||||
version='0.2.0',
|
||||
author='Florian Schulze',
|
||||
author_email='florian.schulze@gmx.net',
|
||||
url='https://github.com/fschulze/pytest-warnings',
|
||||
py_modules=["pytest_warnings"],
|
||||
packages=['pytest_warnings'],
|
||||
entry_points={'pytest11': ['pytest_warnings = pytest_warnings']},
|
||||
install_requires=['pytest'],
|
||||
classifiers=[
|
||||
|
|
3
tox.ini
3
tox.ini
|
@ -5,6 +5,7 @@ envlist = py27,py33,py34,py35
|
|||
usedevelop = true
|
||||
deps =
|
||||
pytest
|
||||
pytest-cov
|
||||
pytest-flakes
|
||||
pytest-pep8
|
||||
coverage
|
||||
|
@ -12,6 +13,6 @@ commands =
|
|||
{envbindir}/py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
|
||||
|
||||
[pytest]
|
||||
addopts = --flakes --pep8
|
||||
addopts = --flakes --pep8 --cov pytest_warnings --cov tests --no-cov-on-fail
|
||||
pep8ignore = E501
|
||||
norecursedirs = bin lib include Scripts .*
|
||||
|
|
Loading…
Reference in New Issue