├── .flake8 ├── .github └── workflows │ └── main.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── DESCRIPTION.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── pytest_httpbin ├── __init__.py ├── certs.py ├── certs │ ├── README.md │ ├── client.pem │ ├── server.key │ └── server.pem ├── plugin.py ├── serve.py └── version.py ├── release.py ├── runtests.sh └── tests ├── conftest.py ├── test_httpbin.py ├── test_server.py └── util.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_httpbin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/__init__.py -------------------------------------------------------------------------------- /pytest_httpbin/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/certs.py -------------------------------------------------------------------------------- /pytest_httpbin/certs/README.md: -------------------------------------------------------------------------------- 1 | generated with 'python -m trustme' 2 | -------------------------------------------------------------------------------- /pytest_httpbin/certs/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/certs/client.pem -------------------------------------------------------------------------------- /pytest_httpbin/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/certs/server.key -------------------------------------------------------------------------------- /pytest_httpbin/certs/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/certs/server.pem -------------------------------------------------------------------------------- /pytest_httpbin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/plugin.py -------------------------------------------------------------------------------- /pytest_httpbin/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/pytest_httpbin/serve.py -------------------------------------------------------------------------------- /pytest_httpbin/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1.0" 2 | -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/release.py -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | py.test $1 -v -s 4 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_httpbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/tests/test_httpbin.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/pytest-httpbin/HEAD/tests/util.py --------------------------------------------------------------------------------