From 2797cff773bd32123d72afa3a8d0047221cdd7f2 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 27 Feb 2017 09:32:56 -0800 Subject: [PATCH] Run destructive win tests when creating instances. --- test/runner/lib/executor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runner/lib/executor.py b/test/runner/lib/executor.py index 79156199b0..9304933db0 100644 --- a/test/runner/lib/executor.py +++ b/test/runner/lib/executor.py @@ -1426,6 +1426,9 @@ class WindowsIntegrationConfig(IntegrationConfig): self.windows = args.windows # type: list [str] + if self.windows: + self.allow_destructive = True + class NetworkIntegrationConfig(IntegrationConfig): """Configuration for the network integration command."""