pkrukp
pkrukp
Currently only Portable PDB format is supported (even though Mono.Cecil should support both). Because of this, collecting coverage from .NET Framework projects is not possible (they use Full PDB by...
Hello, I tried to collect application coverage (`coverlet.exe`) from a simple .net core 3.1 console application which reads from standard input (`Console.ReadKey()`). I got an exception. It looks like coverlet.exe...
## Description Hi, I'm using VsTestConsoleWrapper API to discover test cases. When the test assembly is compiled to .NET Core (3.x?) and is configured to produce Full PDB instead of...
### Summary This is a followup from https://github.com/Microsoft/vstest/issues/1833 The issue: In-Proc Data Collector events are not (fully?) synchronized with executed tests. For example the sequence of events currently could look...
Hi, it seems that xunit vstest test adapter by default runs tests in parallel. There is a vstest run settings MaxCpuCount (https://github.com/Microsoft/vstest-docs/blob/master/docs/configure.md) which should control this. The default value is...
Hi, I'm trying to write vscode extension to download pipeline artifact from Azure. I'd like to use credentials/information provided by vscode-azure-account. There is [azure-devops-node-api client](https://github.com/microsoft/azure-devops-node-api) but it requires "organization url"...
Hello, I'm trying to use `TestCaseFilter` with custom properties. Is that possible? I was trying to pass various forms of `/TestCaseFilter` to `vstest.console.exe` but without success. Works with `TestCategory` but...
Hello, could you please describe/document error handling? For example I noticed that if invalid zip file is passed to `AdmZip` constructor it throws an error. Are there other errors possible?...
Hi, if inner (nested) class is marked with TestFixture, then there is no information about source code: ``` public class OuterClass { [TestFixture] public class InnerClass { ``` The source...