├── .codeclimate.yml ├── .editorconfig ├── .flake8 ├── .github ├── FUNDING.yml ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── python.yml │ └── stale-issues.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── pyproject.toml ├── renovate.json ├── src └── pytest_socket │ └── __init__.py ├── tests ├── __init__.py ├── common.py ├── conftest.py ├── test_async.py ├── test_combinations.py ├── test_doctest.py ├── test_precedence.py ├── test_restrict_hosts.py └── test_socket.py └── uv.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/renovate.json -------------------------------------------------------------------------------- /src/pytest_socket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/src/pytest_socket/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests package 2 | -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/test_combinations.py -------------------------------------------------------------------------------- /tests/test_doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/test_doctest.py -------------------------------------------------------------------------------- /tests/test_precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/test_precedence.py -------------------------------------------------------------------------------- /tests/test_restrict_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/test_restrict_hosts.py -------------------------------------------------------------------------------- /tests/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/tests/test_socket.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miketheman/pytest-socket/HEAD/uv.lock --------------------------------------------------------------------------------