summaryrefslogtreecommitdiffstats
path: root/PCbuild/pyproject.props
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-10-31 19:17:11 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-10-31 19:17:11 (GMT)
commit940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8 (patch)
treea75f4cc54fd92dac49b0e9a127d956f7f4e41a3b /PCbuild/pyproject.props
parentf97edf1aa630d507a69885e5a3e9ff8edbe3ea02 (diff)
downloadcpython-940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8.zip
cpython-940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8.tar.gz
cpython-940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8.tar.bz2
Improves handling of test markers for building Python without intefering with actual installs.
Diffstat (limited to 'PCbuild/pyproject.props')
-rw-r--r--PCbuild/pyproject.props4
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index a2c44f3..25cdfcc 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -128,8 +128,8 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses
</UsingTask>
<Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'">
- <Message Text="Killing any running python.exe instances..." Importance="high" />
- <KillPython FileName="$(OutDir)python$(PyDebugExt).exe" />
+ <Message Text="Killing any running python$(PyDebugExt)$(PyTestExt).exe instances..." Importance="high" />
+ <KillPython FileName="$(OutDir)python$(PyDebugExt)$(PyTestExt).exe" />
</Target>
<!--