├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pytest_warnings └── __init__.py ├── setup.cfg ├── setup.py ├── tests ├── helper_test_a.py ├── helper_test_b.py ├── test_warnings.py └── test_warnings2.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_warnings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/pytest_warnings/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/setup.py -------------------------------------------------------------------------------- /tests/helper_test_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/tests/helper_test_a.py -------------------------------------------------------------------------------- /tests/helper_test_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/tests/helper_test_b.py -------------------------------------------------------------------------------- /tests/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/tests/test_warnings.py -------------------------------------------------------------------------------- /tests/test_warnings2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/tests/test_warnings2.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschulze/pytest-warnings/HEAD/tox.ini --------------------------------------------------------------------------------