Merge pull request #4674 from bdbaddog/fix_2281_Aliases_ignore_pre_post_add_actions
[scons.git] / .appveyor / exclude_tests.ps1
blob6006a5cb546f917aa5803bcf69be21236ae0d64c
1 New-Item -Name exclude_list.txt -ItemType File;
3 # exclude VS 10.0 because it hangs the testing until this is resolved:
4 # https://help.appveyor.com/discussions/problems/19283-visual-studio-2010-trial-license-has-expired
5 $workaround_image = "Visual Studio 2015";
6 if ($env:APPVEYOR_BUILD_WORKER_IMAGE -eq $workaround_image) {
7 Add-Content -Path 'exclude_list.txt' -Value 'test\MSVS\vs-10.0-exec.py';