Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Make pex_pytest non-zip-safe
Browse files Browse the repository at this point in the history
  • Loading branch information
Code0x58 committed May 9, 2020
1 parent f085cf3 commit 175387d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/rules/pex/pex_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ def _pex_binary_impl(ctx):
"--output-file",
deploy_pex.path,
"--disable-cache",
"--python-shebang", "#!/usr/bin/env python3",
"--no-compile",
manifest_file.path,
]
#EXTRA_PEX_ARGS#
Expand Down Expand Up @@ -455,6 +457,7 @@ def pex_pytest(
],
entrypoint = "pytest",
testonly = True,
zip_safe = False,
**kwargs
)
_pytest_pex_test(
Expand Down

0 comments on commit 175387d

Please sign in to comment.