(extra_args)
| 31 | def create_colors_pex(tmpdir): |
| 32 | # type: (Any) -> CreateColorsPex |
| 33 | def create(extra_args): |
| 34 | pex_file = os.path.join(str(tmpdir), "colors.pex") |
| 35 | results = run_pex_command(["ansicolors==1.1.8", "-o", pex_file] + list(extra_args)) |
| 36 | results.assert_success() |
| 37 | return pex_file |
| 38 | |
| 39 | return create |
| 40 |
nothing calls this directly
no test coverage detected