Skip to content

Commit 26cf651

Browse files
committed
0.6.0
1 parent f6b54d5 commit 26cf651

File tree

4 files changed

+12
-118
lines changed

4 files changed

+12
-118
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.6 ()
1+
## 0.6.0 (2018-11-14)
22
* [#165](https://github.com/formulahendry/vscode-dotnet-test-explorer/pull/165): Multiple workspace support
33
* [#164](https://github.com/formulahendry/vscode-dotnet-test-explorer/pull/164): Double-quote argument to dotnet --filter
44
* [#156](https://github.com/formulahendry/vscode-dotnet-test-explorer/pull/156): Fix unfound tests when using Go to Test feature with F#

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@
1111
* [.NET Core](https://www.microsoft.com/net/core) is installed
1212
* NUnit and MsTest requires a dotnet [sdk](https://www.microsoft.com/net/download) version of >= 2.1.2 and running dotnet tooling in english (see [#77](https://github.com/formulahendry/vscode-dotnet-test-explorer/issues/77) for details).
1313

14-
## New in 0.5.5
14+
## New in 0.6.0
1515

16-
* You can now stop the current test run. After killing the processe(s) it will perform a new test discovery.
17-
18-
![test-explorer](images/stop.PNG)
19-
20-
* If the build fails the tree reflects this better
21-
* Code lens status symbols and running in tests in context should now work again.
16+
* We now support multiple workspaces. We will try to find tests in all of the folders according to the testProjectPath setting. See the section regarding [configuring multiple test projects](#configuring-multiple-test-projects)
17+
* Tests written in fsharp should be less unfoundable when trying to navigate to them
18+
* Filter argument are now double-quoted (again, let's hope they stay that way from now on)
2219

2320
## Usage
2421

@@ -41,6 +38,12 @@ the glob pattern "+(testProjectOne|testProjectTwo)" or "**/*Tests.csproj" should
4138

4239
Due to some performance concerns discovery and test running over multiple directories are run one at a time in a synchronous fashion. When running specific tests (eg, not running all tests) the extension should be smart enought to figure out which test directory should be run and only run tests for that directory.
4340

41+
#### Stopping the current test runner(s)
42+
43+
Press the stop button in the top menu. After killing the processe(s) it will perform a new test discovery.
44+
45+
![test-explorer](images/stop.PNG)
46+
4447
#### Logging
4548

4649
Text from the dotnet test output as well as debug info is written to the Output/Test explorer terminal window. To view the log you can access it simply by clicking the view log icon.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dotnet-test-explorer",
33
"displayName": ".NET Core Test Explorer",
44
"description": "Test Explorer for .NET Core (MSTest, xUnit, NUnit)",
5-
"version": "0.5.5",
5+
"version": "0.6.0",
66
"publisher": "formulahendry",
77
"license": "MIT",
88
"icon": "testexplorer_dark.png",

readme06.md

Lines changed: 0 additions & 109 deletions
This file was deleted.

0 commit comments

Comments
 (0)