Skip to content

Commit

Permalink
Updating devguide (#2424)
Browse files Browse the repository at this point in the history
Updating guide to instruct to use dotnet test instead of runTests.bat, which doesn't exist anymore.
  • Loading branch information
dylanbronson authored Jan 30, 2020
1 parent 64c3594 commit a890768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/devguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ scripts/linux/runTests.sh

### Windows
```powershell
scripts\windows\runTests.bat
dotnet test --filter Category=Unit
```

## Run integration tests
Expand Down Expand Up @@ -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`.
Expand Down

0 comments on commit a890768

Please sign in to comment.