zarro 1.151.2 → 1.151.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -171,11 +171,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
171
171
|
}
|
|
172
172
|
const rebuild = env.resolveFlag(env.DOTNET_TEST_REBUILD);
|
|
173
173
|
const runningInParallel = concurrency > 1;
|
|
174
|
+
const suppressOutput = true;
|
|
174
175
|
const tasks = testProjectPaths.map((path, idx) => {
|
|
175
176
|
return async () => {
|
|
176
177
|
debug(`${idx} start test run ${path}`);
|
|
177
178
|
try {
|
|
178
|
-
const result = await testOneDotNetCoreProject(path, configuration, verbosity, testResults, runningInParallel, rebuild,
|
|
179
|
+
const result = await testOneDotNetCoreProject(path, configuration, verbosity, testResults, runningInParallel, rebuild, suppressOutput, `(${idx + 1} / ${testProjectPaths.length})`);
|
|
179
180
|
testProcessResults.push(result);
|
|
180
181
|
}
|
|
181
182
|
catch (e) {
|