Skip to content

Commit 0a82c4d

Browse files
committed
remove strange COMBINE_RESULTS testMode
1 parent 5223f86 commit 0a82c4d

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
@@ -79,9 +79,7 @@ const Docker = {
7979
const githubWorkflow = path.join(runnerTemporaryPath, '_github_workflow');
8080
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
8181
const cidfile = containerIdFilePath(parameters);
82-
const testPlatforms = (
83-
testMode === 'all' ? ['playmode', 'editmode', 'COMBINE_RESULTS'] : [testMode]
84-
).join(';');
82+
const testPlatforms = (testMode === 'all' ? ['playmode', 'editmode'] : [testMode]).join(';');
8583

8684
return `docker run \
8785
--workdir /github/workspace \
@@ -166,9 +164,7 @@ const Docker = {
166164
const cidfile = containerIdFilePath(parameters);
167165
const githubWorkflow = path.join(runnerTemporaryPath, '_github_workflow');
168166
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
169-
const testPlatforms = (
170-
testMode === 'all' ? ['playmode', 'editmode', 'COMBINE_RESULTS'] : [testMode]
171-
).join(';');
167+
const testPlatforms = (testMode === 'all' ? ['playmode', 'editmode'] : [testMode]).join(';');
172168

173169
return `docker run \
174170
--workdir /github/workspace \

0 commit comments

Comments
 (0)