()
| 31 | |
| 32 | |
| 33 | def test_pex_script(): |
| 34 | # type: () -> None |
| 35 | output = subprocess.check_output( |
| 36 | args=[script_path("pex"), "--version"], |
| 37 | # On Python 2.7 --version gets printed to stderr. |
| 38 | stderr=subprocess.STDOUT, |
| 39 | ) |
| 40 | assert __version__ == output.decode("utf-8").strip() |
| 41 | |
| 42 | |
| 43 | def test_pex_tools_script(): |
nothing calls this directly
no test coverage detected