├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── pyproject.toml ├── pytest_httpx ├── __init__.py ├── _httpx_internals.py ├── _httpx_mock.py ├── _options.py ├── _pretty_print.py ├── _request_matcher.py ├── py.typed └── version.py └── tests ├── __init__.py ├── conftest.py ├── test_httpx_async.py ├── test_httpx_sync.py └── test_plugin.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/_config.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_httpx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/__init__.py -------------------------------------------------------------------------------- /pytest_httpx/_httpx_internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/_httpx_internals.py -------------------------------------------------------------------------------- /pytest_httpx/_httpx_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/_httpx_mock.py -------------------------------------------------------------------------------- /pytest_httpx/_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/_options.py -------------------------------------------------------------------------------- /pytest_httpx/_pretty_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/_pretty_print.py -------------------------------------------------------------------------------- /pytest_httpx/_request_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/_request_matcher.py -------------------------------------------------------------------------------- /pytest_httpx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_httpx/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/pytest_httpx/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_httpx_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/tests/test_httpx_async.py -------------------------------------------------------------------------------- /tests/test_httpx_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/tests/test_httpx_sync.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colin-b/pytest_httpx/HEAD/tests/test_plugin.py --------------------------------------------------------------------------------