├── .github └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── pytest_localserver ├── __init__.py ├── cert.crt ├── http.py ├── https.py ├── plugin.py ├── server.key └── smtp.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_http.py ├── test_https.py ├── test_smtp.py └── test_version.py └── tox.ini /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_localserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/__init__.py -------------------------------------------------------------------------------- /pytest_localserver/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/cert.crt -------------------------------------------------------------------------------- /pytest_localserver/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/http.py -------------------------------------------------------------------------------- /pytest_localserver/https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/https.py -------------------------------------------------------------------------------- /pytest_localserver/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/plugin.py -------------------------------------------------------------------------------- /pytest_localserver/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/server.key -------------------------------------------------------------------------------- /pytest_localserver/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/pytest_localserver/smtp.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | 2 | [metadata] 3 | description_file = README.rst 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /tests/test_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/tests/test_https.py -------------------------------------------------------------------------------- /tests/test_smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/tests/test_smtp.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-localserver/HEAD/tox.ini --------------------------------------------------------------------------------