Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip building c-extensions if python is running in build tree #75

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions mingw_smoketests.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,13 @@ def test_c_ext_build(self):
import textwrap
from pathlib import Path

if sysconfig.is_python_build():
# we are running this test without installing and is known
# to cause errors with building c-extensions
# so we are skipping this test
raise unittest.SkipTest("Skipping test as building c-extension isn't supported \
without installing python")

with tempfile.TemporaryDirectory() as tmppro:
subprocess.check_call([sys.executable, "-m", "ensurepip", "--user"])
with Path(tmppro, "setup.py").open("w") as f:
Expand Down