From 7b889a122b08465eea53d801976ced0257ae31fe Mon Sep 17 00:00:00 2001 From: Ganesh Pawar Date: Tue, 9 Mar 2021 10:43:34 +0530 Subject: [PATCH] tools: Add test-main equivalent for Powershell on Windows. --- tools/test-main.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tools/test-main.ps1 diff --git a/tools/test-main.ps1 b/tools/test-main.ps1 new file mode 100644 index 0000000..fb7cba1 --- /dev/null +++ b/tools/test-main.ps1 @@ -0,0 +1,7 @@ +Set-StrictMode -Version Latest +$ErrorActionPreference = "Stop" + +python tools\test-bots "$args" --coverage +python tools\test-botserver "$args" --coverage combine +python tools\test-zulip "$args" --coverage combine +python tools\test-lib "$args" --coverage combine