MCPcopy Create free account
hub / github.com/HypothesisWorks/hypothesis / pip_tool

Function pip_tool

tooling/src/hypothesistooling/scripts.py:66–72  ·  view source on GitHub ↗
(name, *args, **kwargs)

Source from the content-addressed store, hash-verified

64
65
66def pip_tool(name, *args, **kwargs):
67 args = [str(arg) for arg in args]
68 print_command(name, args)
69 r = subprocess.call([tool_path(name), *args], **kwargs)
70
71 if r != 0:
72 sys.exit(r)

Callers 15

test_passes_rst_lintFunction · 0.90
codespellFunction · 0.90
lintFunction · 0.90
formatFunction · 0.90
compile_requirementsFunction · 0.90
update_python_versionsFunction · 0.90
update_django_versionsFunction · 0.90
live_docsFunction · 0.90

Calls 2

print_commandFunction · 0.85
tool_pathFunction · 0.85