zarro 1.151.4 → 1.152.2
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.
|
@@ -151,8 +151,8 @@
|
|
|
151
151
|
default: "auto",
|
|
152
152
|
help: "process model for nunit-runner to use"
|
|
153
153
|
});
|
|
154
|
-
const extra = `
|
|
155
|
-
- globs match dotnet core projects or .net framework built assemblies
|
|
154
|
+
const extra = `
|
|
155
|
+
- globs match dotnet core projects or .net framework built assemblies
|
|
156
156
|
- elements surrounded with () are treated as pure gulp.src masks`, defaultTestInclude = "*.Tests,*.Tests.*,Tests,Test,Test.*", defaultTestExclude = `{!**/node_modules/**/*},{!./${getToolsFolder(env)}/**/*}`;
|
|
157
157
|
env.register({
|
|
158
158
|
name: "TEST_INCLUDE",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
});
|
|
175
175
|
env.register({
|
|
176
176
|
name: "TEST_VERBOSITY",
|
|
177
|
-
help: `Verbosity of reporting for dotnet core testing: ${msbuildVerbosityOptions}`,
|
|
177
|
+
help: `Verbosity of reporting for dotnet core testing: ${msbuildVerbosityOptions} (if you're using Quackers, this will be dropped to minimal as Quackers provides plenty of logging)`,
|
|
178
178
|
default: "normal"
|
|
179
179
|
});
|
|
180
180
|
env.register({
|
|
@@ -650,9 +650,9 @@
|
|
|
650
650
|
env.register({
|
|
651
651
|
name: "ZARRO_ALLOW_FILE_RESOLUTION",
|
|
652
652
|
default: "true",
|
|
653
|
-
help: `when enabled, the value provided by an environment variable may be the path
|
|
654
|
-
to a file to use for that configuration; for example MSBUILD_PROPERTIES=foo.json will
|
|
655
|
-
instruct Zarro to read the mapping in foo.json for extra msbuild properties to pass on
|
|
653
|
+
help: `when enabled, the value provided by an environment variable may be the path
|
|
654
|
+
to a file to use for that configuration; for example MSBUILD_PROPERTIES=foo.json will
|
|
655
|
+
instruct Zarro to read the mapping in foo.json for extra msbuild properties to pass on
|
|
656
656
|
where applicable.`
|
|
657
657
|
});
|
|
658
658
|
env.register({
|
|
@@ -160,7 +160,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
160
160
|
slowSummary: [],
|
|
161
161
|
started: Date.now(),
|
|
162
162
|
fullLog: [],
|
|
163
|
-
}, testProcessResults = [], testProjectPaths = await gatherPaths(testProjects, true), verbosity = env.resolve("
|
|
163
|
+
}, testProcessResults = [], testProjectPaths = await gatherPaths(testProjects, true), verbosity = env.resolve("TEST_VERBOSITY");
|
|
164
164
|
const testInParallel = await shouldTestInParallel(testProjectPaths);
|
|
165
165
|
const concurrency = testInParallel
|
|
166
166
|
? env.resolveNumber("MAX_CONCURRENCY")
|