├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── appveyor.yml ├── docs ├── Makefile ├── conf.py ├── development.md ├── index.md └── make.bat ├── mkdocs.yml ├── old_README.md ├── pytest_requests ├── __init__.py ├── patch.py ├── plugin.py └── response.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── test_pytest_requests.py └── test_simple.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/docs/make.bat -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /old_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/old_README.md -------------------------------------------------------------------------------- /pytest_requests/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.0" 2 | -------------------------------------------------------------------------------- /pytest_requests/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/pytest_requests/patch.py -------------------------------------------------------------------------------- /pytest_requests/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/pytest_requests/plugin.py -------------------------------------------------------------------------------- /pytest_requests/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/pytest_requests/response.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_pytest_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/tests/test_pytest_requests.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okken/pytest-requests/HEAD/tox.ini --------------------------------------------------------------------------------