Skip to content

Commit

Permalink
Merge pull request #4 from machinezone/user/john.oconnor/patch1689810888
Browse files Browse the repository at this point in the history
remove strange COMBINE_RESULTS testMode
  • Loading branch information
johnfoconnor authored Jul 20, 2023
2 parents 41766d7 + 1a97251 commit 000181b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 2 additions & 6 deletions src/model/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ const Docker = {
const githubWorkflow = path.join(runnerTemporaryPath, '_github_workflow');
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
const cidfile = containerIdFilePath(parameters);
const testPlatforms = (
testMode === 'all' ? ['playmode', 'editmode', 'COMBINE_RESULTS'] : [testMode]
).join(';');
const testPlatforms = (testMode === 'all' ? ['playmode', 'editmode'] : [testMode]).join(';');

return `docker run \
--workdir /github/workspace \
Expand Down Expand Up @@ -157,9 +155,7 @@ const Docker = {
const cidfile = containerIdFilePath(parameters);
const githubWorkflow = path.join(runnerTemporaryPath, '_github_workflow');
if (!existsSync(githubWorkflow)) mkdirSync(githubWorkflow);
const testPlatforms = (
testMode === 'all' ? ['playmode', 'editmode', 'COMBINE_RESULTS'] : [testMode]
).join(';');
const testPlatforms = (testMode === 'all' ? ['playmode', 'editmode'] : [testMode]).join(';');

return `docker run \
--workdir /github/workspace \
Expand Down

0 comments on commit 000181b

Please sign in to comment.