From a890768e2d7615bdf23784556cb7c6729e9f8d77 Mon Sep 17 00:00:00 2001 From: dylanbronson <55515325+dylanbronson@users.noreply.github.com> Date: Wed, 29 Jan 2020 16:05:35 -0800 Subject: [PATCH] Updating devguide (#2424) Updating guide to instruct to use dotnet test instead of runTests.bat, which doesn't exist anymore. --- doc/devguide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/devguide.md b/doc/devguide.md index 8e82b6c04e2..6acd9b9aa8d 100644 --- a/doc/devguide.md +++ b/doc/devguide.md @@ -39,7 +39,7 @@ scripts/linux/runTests.sh ### Windows ```powershell -scripts\windows\runTests.bat +dotnet test --filter Category=Unit ``` ## Run integration tests @@ -88,7 +88,7 @@ scripts/linux/runTests.sh "--filter Category=Integration" ### Windows ```powershell -scripts\windows\runTests.bat "--filter Category=Integration" +dotnet test --filter Category=Integration ``` The syntax of the "filter" argument is described [here](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#filter-option-details). All IoT Edge tests are categorized as one of `Unit`, `Integration`, or `Bvt`.