Skip to content

Commit 000181b

Browse files
authored
Merge pull request #4 from machinezone/user/john.oconnor/patch1689810888
remove strange COMBINE_RESULTS testMode
2 parents 41766d7 + 1a97251 commit 000181b

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

dist/index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/model/docker.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ const Docker = {
7676
const githubWorkflow = path.join(runnerTemporaryPath, '_github_workflow');
7777
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
7878
const cidfile = containerIdFilePath(parameters);
79-
const testPlatforms = (
80-
testMode === 'all' ? ['playmode', 'editmode', 'COMBINE_RESULTS'] : [testMode]
81-
).join(';');
79+
const testPlatforms = (testMode === 'all' ? ['playmode', 'editmode'] : [testMode]).join(';');
8280

8381
return `docker run \
8482
--workdir /github/workspace \
@@ -157,9 +155,7 @@ const Docker = {
157155
const cidfile = containerIdFilePath(parameters);
158156
const githubWorkflow = path.join(runnerTemporaryPath, '_github_workflow');
159157
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
160-
const testPlatforms = (
161-
testMode === 'all' ? ['playmode', 'editmode', 'COMBINE_RESULTS'] : [testMode]
162-
).join(';');
158+
const testPlatforms = (testMode === 'all' ? ['playmode', 'editmode'] : [testMode]).join(';');
163159

164160
return `docker run \
165161
--workdir /github/workspace \

0 commit comments

Comments
 (0)