-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Description
There are some command-line options which we think should be applied "globally" and not blindly be passed to each test application. These are:
-
--config-file
,--results-directory
,--diagnostic-output-directory
- If it's relative, we should transform to absolute path. Taking results directory as an example, if you do
dotnet test --solution MySln.sln --results-directory TestResults
in your repo root, I expectTestResults
to refer topath/to/repo-root/TestResults
instead of being relative to each individual executable. Same applies to all others. -
--results-directory
: done in Better handling of--results-directory
Β #50081 - Remaining are in progress: Implement global --config-file and --diagnostic-output-directory options for dotnet test MTPΒ #50136
- If it's relative, we should transform to absolute path. Taking results directory as an example, if you do
-
--timeout
-
--minimum-expected-tests
-
--maximum-failed-tests
FrulfumpEvangelinkCopilot