Skip to content

Commit

Permalink
See the test PEXes to separate setup latency from pexpect timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Aug 8, 2024
1 parent 50abb29 commit bafdf76
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/test_issue_157.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ def create_pex(
pex = os.path.join(str(tmpdir), "pex")
pex_root = os.path.join(str(tmpdir), "pex_root")
run_pex_command(
args=["--pex-root", pex_root, "--runtime-pex-root", pex_root, "-o", pex] + list(extra_args)
args=["--pex-root", pex_root, "--runtime-pex-root", pex_root, "-o", pex]
+ list(extra_args)
+ ["--seed"]
).assert_success()
return pex

Expand Down

0 comments on commit bafdf76

Please sign in to comment.