Skip to content

Commit 47f7c25

Browse files
committed
Flip condition for safer default.
1 parent 1e4a1a4 commit 47f7c25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buildtools/smoketests.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<RootPath Condition="'$(RootPath)'==''">$(MSBuildProjectDirectory)</RootPath>
44

55
<!-- We need to skip recipes that use Docker when running on Windows CodeBuild -->
6-
<ShouldRunDockerTests>true</ShouldRunDockerTests>
7-
<ShouldRunDockerTests Condition="'$(OS)' == 'Windows_NT' AND '$(CODEBUILD_BUILD_ID)' != ''">false</ShouldRunDockerTests>
6+
<ShouldRunDockerTests>false</ShouldRunDockerTests>
7+
<ShouldRunDockerTests Condition="'$(OS)' != 'Windows_NT' OR '$(CODEBUILD_BUILD_ID)' == ''">true</ShouldRunDockerTests>
88

99
<!-- Generate a suffix for CloudFormation stack names, in case multiple smoke tests are running at once -->
1010
<SafeOperatingSystem>$(OS)</SafeOperatingSystem>

0 commit comments

Comments
 (0)